summaryrefslogtreecommitdiff
path: root/wearable_src/RefImpl/Super.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wearable_src/RefImpl/Super.cpp')
-rwxr-xr-xwearable_src/RefImpl/Super.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/wearable_src/RefImpl/Super.cpp b/wearable_src/RefImpl/Super.cpp
new file mode 100755
index 0000000..81e47ee
--- /dev/null
+++ b/wearable_src/RefImpl/Super.cpp
@@ -0,0 +1,18 @@
+#include "Super.h"
+#include <stdio.h>
+
+
+Super::Super(){
+ printf("Super c++ constructor\n");
+}
+Super::~Super(){
+ printf("Super c++ destroy\n");
+}
+
+void Super::base(){
+ printf("Super::base()\n");
+}
+
+void Super::override(){
+ printf("Super::override()\n");
+}