Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 1st, 2012  |  syntax: C++  |  size: 0.22 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.  
  2. //      We'll call this file "SomeClass.h"
  3.  
  4. #ifndef _SOME_CLASS_H_
  5. #define _SOME_CLASS_H_
  6.  
  7. //      Declaration of the class and methods
  8. class CSomeClass
  9. {
  10. public:
  11.         void SomeMethod_1 ();
  12.         void SomeMethod_2 ();
  13. };
  14.  
  15. #endif