Files Classes Functions Hierarchy
00001 #ifndef VISCMD_H 00002 #define VISCMD_H 00003 00004 #include <string> 00005 #include <vector> 00006 using namespace std; 00007 00008 00009 #include <typedefs.h> 00010 00011 00015 class viscmd 00016 { 00017 public: 00018 00020 string command; 00021 00023 string arg; 00024 00026 bool valid; 00028 bool enabled; 00029 00031 viscmd(stringc command_, stringc arg_); 00032 00034 viscmd(); 00035 00037 operator string() const; 00038 00041 void serializeInverse(stringc & s); 00042 00044 static void printstatusinvalid(vector<viscmd>& v); 00045 00046 00047 }; 00048 00049 00050 00051 #endif 00052
1.5.8