11 lines
157 B
C++
Executable File
11 lines
157 B
C++
Executable File
#ifndef __MyObj_INCLUDE_H_
|
|
#define __MyObj_INCLUDE_H_
|
|
|
|
class MyObj {
|
|
public:
|
|
MyObj(unsigned int val) : value(val) {};
|
|
unsigned int value;
|
|
};
|
|
|
|
#endif
|