diff options
Diffstat (limited to 'wearable_src/RefImpl/Super.h')
-rwxr-xr-x | wearable_src/RefImpl/Super.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/wearable_src/RefImpl/Super.h b/wearable_src/RefImpl/Super.h new file mode 100755 index 0000000..21c45e1 --- /dev/null +++ b/wearable_src/RefImpl/Super.h @@ -0,0 +1,12 @@ +#ifndef _SUPER_H_ +#define _SUPER_H_ + +class Super { +public: + Super(); + virtual ~Super(); + void base(); + virtual void override(); +}; + +#endif //_SUPER_H_
\ No newline at end of file |