Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/shell/shell_command_class.h @ 7386

Last change on this file since 7386 was 7386, checked in by bensch, 18 years ago

orxonox/trunk: completions

File size: 1.8 KB
Line 
1/*!
2 * @file shell_command_class.h
3 * Definition of a on-screen-shell
4 */
5
6#ifndef _SHELL_COMMAND_CLASS_H
7#define _SHELL_COMMAND_CLASS_H
8
9#include "base_object.h"
10#include <list>
11
12
13namespace OrxShell
14{
15  // FORWARD DECLARATION
16  class ShellCommand;
17  class ShellCommandAlias;
18
19  //! A class to hold all Classes that have (once) registered Commands.
20  class ShellCommandClass : public BaseObject
21  {
22    friend class ShellCommand;
23
24  public:
25    /** @returns the CommandClassList */
26    static const std::list<ShellCommandClass*>* getCommandClassList() { return ShellCommandClass::commandClassList; };
27
28    static bool getCommandListOfClass(const std::string& className, std::list<std::string>& stringList);
29    static bool getCommandListOfAlias(std::list<std::string>& aliasList);
30
31    static ShellCommandClass* getCommandClass(const std::string& className);
32    static void unregisterAllCommands();
33
34    static void help (const std::string& className);
35
36  private:
37    ShellCommandClass(const std::string& className);
38    virtual ~ShellCommandClass();
39
40    static const ShellCommandClass* isRegistered(const std::string& className);
41    static void initCommandClassList();
42
43  private:
44    const std::string                      className;                 //!< The Name of the Class. This should match the ClassName of the Commands Class.
45    long                                   classID;                   //!< The classID of this Class
46    std::list<ShellCommand*>               commandList;               //!< A list of Commands from this Class
47    static std::list<ShellCommandClass*>*  commandClassList;          //!< A list of Classes
48    static std::list<ShellCommandAlias*>*  aliasList;                 //!< An Alias to A Command. (only for classes with one Instance)
49  };
50
51}
52
53#endif /* _SHELL_COMMAND_H */
Note: See TracBrowser for help on using the repository browser.