Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5197 in orxonox.OLD for trunk/src/lib/shell/shell_completion.h


Ignore:
Timestamp:
Sep 18, 2005, 2:57:20 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen-tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/shell/shell_completion.h

    r5195 r5197  
    1515#endif
    1616
     17//! an enumerator for different types the Shell can complete.
    1718typedef enum {
    1819  SHELLC_NONE        = 0,
     
    2324} SHELLC_TYPE;
    2425
     26//! A struct for ShellElements (these are used as containers to identify an Input for what it is)
    2527struct ShellC_Element{
    26   const char*     name;     //!<
    27   SHELLC_TYPE     type;
     28  const char*     name;     //!< the Name of the Element to be completed.
     29  SHELLC_TYPE     type;     //!< the type of the Element
    2830};
    2931
     
    3739  bool autoComplete(ShellInput* input = NULL);
    3840  bool classComplete(const char* classBegin);
    39   long classMatch(const char* input, unsigned int* length);
     41//  long classMatch(const char* input, unsigned int* length);
    4042  bool objectComplete(const char* objectBegin, long classID);
    41   bool objectMatch(const char* objectBegin, long classID, unsigned int* length);
     43//  bool objectMatch(const char* objectBegin, long classID, unsigned int* length);
    4244  bool functionComplete(const char* functionBegin, long classID);
    43   bool functionMatch(const char* functionBegin, long classID, unsigned int* length);
     45//  bool functionMatch(const char* functionBegin, long classID, unsigned int* length);
    4446  bool aliasComplete(const char* aliasBegin);
    4547
     
    5254 private:
    5355   tList<ShellC_Element>*   completionList;          //!< A list of completions, that are io.
    54    ShellInput*              input;
     56   ShellInput*              input;                   //!< the input this completion works on.
    5557};
    5658
Note: See TracChangeset for help on using the changeset viewer.