/*! * @file shell_completion.h * @brief The Shell Completion Tasks */ #ifndef _SHELL_COMPLETION_H #define _SHELL_COMPLETION_H // FORWARD DECLARATION //! A class for ... class ShellCompletion { public: ShellCompletion(); virtual ~ShellCompletion(); private: }; #endif /* _SHELL_COMPLETION_H */