aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/foo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libfoo/foo.cpp')
-rw-r--r--tests/libfoo/foo.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/libfoo/foo.cpp b/tests/libfoo/foo.cpp
deleted file mode 100644
index 22be35018..000000000
--- a/tests/libfoo/foo.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <iostream>
-#include "foo.h"
-
-using namespace std;
-
-void Foo::unpureVirtual()
-{
- cout << "Foo::unpureVirtual()" << endl;
-}
-
-void Foo::callPureVirtual()
-{
- cout << "Foo::callPureVirtual() -- calling pureVirtual..." << endl;
- this->pureVirtual();
- cout << " -- pureVirtual called." << endl;
-}
-