Example Code
// File foo.h
#ifndef __foo
#define __foo
class foo
{
public:
// public operations
void myFunc();
};
#endif /* __foo */