
Untitled
By: a guest on
Jul 1st, 2012 | syntax:
C++ | size: 0.22 KB | hits: 14 | expires: Never
// We'll call this file "SomeClass.h"
#ifndef _SOME_CLASS_H_
#define _SOME_CLASS_H_
// Declaration of the class and methods
class CSomeClass
{
public:
void SomeMethod_1 ();
void SomeMethod_2 ();
};
#endif