Guest User

class1

a guest
Jun 15th, 2010
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. class command{
  2.     private:
  3.     char keyword[40];
  4.     char modifier[5][20];
  5.     int count;
  6.     public:
  7.     void init(char[]);
  8.     void init();
  9.     int modifier_count();
  10.     int valid_command(char[]);
  11.     void get_keyword(char[]);
  12.     void get_modifier(char[], int);
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment