#ifndef __EXAMPLE_H #define __EXAMPLE_H #include #include "Other.h" using namespace std; class Example { public: Example(const char *strVal); ~Example(); // this is the destructor string toString(); private: char* strPtr; Other other; static unsigned int globalId; unsigned int id; }; #endif // __EXAMPLE_H