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