17 lines
241 B
C++
17 lines
241 B
C++
#ifndef _PPOINTOBJ_H_
|
|
#define _PPOINTOBJ_H_
|
|
|
|
class PPointObj {
|
|
public:
|
|
PPointObj(unsigned int counter);
|
|
~PPointObj();
|
|
|
|
void PrintTest();
|
|
|
|
private:
|
|
int fCounter;
|
|
int *fTest;
|
|
};
|
|
|
|
#endif // _PPOINTOBJ_H_
|