summaryrefslogtreecommitdiff
path: root/tests/tolua/Base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tolua/Base.hpp')
-rwxr-xr-xtests/tolua/Base.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/tolua/Base.hpp b/tests/tolua/Base.hpp
new file mode 100755
index 0000000..db6a8ad
--- /dev/null
+++ b/tests/tolua/Base.hpp
@@ -0,0 +1,11 @@
+#ifndef __BASE_H
+#define __BASE_H
+
+class Base
+{
+ public:
+ virtual ~Base( ) { }
+ virtual void hello( ) = 0;
+};
+
+#endif