home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 March / ENTER.ISO / files / fwp-0.0.6-win32-installer.exe / CAlias.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-06  |  370 b   |  25 lines

  1. #ifndef __CAlias_h__
  2. #define __CAlias_h__
  3.  
  4. #include "Console.h"
  5.  
  6. class CAlias{
  7. public:
  8.     CAlias(const char* name, const char* string);
  9.     ~CAlias();
  10.  
  11.     char* getStringCopy(char* buff);
  12.     char* getNameCopy(char* buff);
  13.     char* getString();
  14.     char* getName();
  15.  
  16. //protected:
  17.     char* name;
  18.     char* string;
  19.  
  20. //    Console* console;
  21. };
  22.  
  23.  
  24. #endif    /* __CAlias_h__ */
  25.