diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-11 17:28:45 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-11 17:28:45 +0200 |
commit | 244df8bd2c52db9d9c9b59b917206dafcd275ebe (patch) | |
tree | 27aefa8ff8373bcb674bb2c4820e136c41232d16 /Source/Kernel/Shell | |
parent | 5b9f35ec7509e169f58500b66712eafb075d0b36 (diff) | |
download | Melon-244df8bd2c52db9d9c9b59b917206dafcd275ebe.tar.gz Melon-244df8bd2c52db9d9c9b59b917206dafcd275ebe.zip |
Added a single linked list simple class (SimpleList)
Diffstat (limited to 'Source/Kernel/Shell')
-rw-r--r-- | Source/Kernel/Shell/KernelShell.class.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/Shell/KernelShell.class.cpp b/Source/Kernel/Shell/KernelShell.class.cpp index d05487f..3d76ee0 100644 --- a/Source/Kernel/Shell/KernelShell.class.cpp +++ b/Source/Kernel/Shell/KernelShell.class.cpp @@ -2,6 +2,7 @@ #include <VTManager/ScrollableVT.class.h> #include <DeviceManager/Kbd.ns.h> #include <Library/Rand.ns.h> +#include <Library/SimpleList.class.h> u32int KernelShell::m_instances = 0; @@ -30,7 +31,6 @@ KernelShell::~KernelShell() { } u32int KernelShell::run() { - struct { const char* name; void (KernelShell::*cmd)(Vector<String>&); |