aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/bar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libfoo/bar.cpp')
-rw-r--r--tests/libfoo/bar.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/libfoo/bar.cpp b/tests/libfoo/bar.cpp
new file mode 100644
index 000000000..a8f9712a4
--- /dev/null
+++ b/tests/libfoo/bar.cpp
@@ -0,0 +1,15 @@
+#include <iostream>
+#include "bar.h"
+
+using namespace std;
+
+void Bar::pureVirtual()
+{
+ cout << "Bar::pureVirtual()" << endl;
+}
+
+void Bar::unpureVirtual()
+{
+ cout << "Bar::unpureVirtual()" << endl;
+}
+