1
Files
lecture-operating-system-de…/c_os/user/MyObj.h
2022-05-08 19:42:32 +02:00

12 lines
184 B
C++
Executable File

#ifndef __MyObj_INCLUDE_H_
#define __MyObj_INCLUDE_H_
class MyObj {
public:
MyObj() : value(5) {};
MyObj(unsigned int val) : value(val) {};
unsigned int value;
};
#endif