1
Files
lecture-operating-system-de…/c_os/user/MyObj.h
2022-05-07 14:30:40 +02:00

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