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, 0 insertions, 14 deletions
diff --git a/tests/libfoo/foo.h b/tests/libfoo/foo.h
deleted file mode 100644
index 585b844f7..000000000
--- a/tests/libfoo/foo.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#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
-