aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/foo.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libfoo/foo.h')
-rw-r--r--tests/libfoo/foo.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/libfoo/foo.h b/tests/libfoo/foo.h
new file mode 100644
index 000000000..585b844f7
--- /dev/null
+++ b/tests/libfoo/foo.h
@@ -0,0 +1,14 @@
+#ifndef FOO_H
+#define FOO_H
+
+class Foo
+{
+public:
+ Foo() {}
+ virtual ~Foo() {}
+ virtual void pureVirtual() = 0;
+ virtual void unpureVirtual();
+ virtual void callPureVirtual();
+};
+#endif // FOO_H
+