From 7e9402062f12470e80925faebe143bf3ab8f12bd Mon Sep 17 00:00:00 2001 From: ChUrl Date: Mon, 11 Jul 2022 19:15:22 +0200 Subject: [PATCH] move myobj to heapdemo --- c_os/user/MyObj.h | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100755 c_os/user/MyObj.h diff --git a/c_os/user/MyObj.h b/c_os/user/MyObj.h deleted file mode 100755 index 0387e87..0000000 --- a/c_os/user/MyObj.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef __MyObj_INCLUDE_H_ -#define __MyObj_INCLUDE_H_ - -class MyObj { -public: - MyObj() : value(5) {}; - MyObj(unsigned int val) : value(val) {}; - unsigned int value; -}; - -#endif