aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/bar.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libfoo/bar.h')
-rw-r--r--tests/libfoo/bar.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/libfoo/bar.h b/tests/libfoo/bar.h
new file mode 100644
index 000000000..4a73c2deb
--- /dev/null
+++ b/tests/libfoo/bar.h
@@ -0,0 +1,15 @@
+#ifndef BAR_H
+#define BAR_H
+
+#include "foo.h"
+
+class Bar : public Foo
+{
+public:
+ Bar() {}
+ virtual ~Bar() {}
+ virtual void pureVirtual();
+ virtual void unpureVirtual();
+};
+#endif // BAR_H
+