aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libfoo/bar.cpp
blob: a8f9712a421bc0f0f191261f189efbdee93042f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include "bar.h"

using namespace std;

void Bar::pureVirtual()
{
    cout << "Bar::pureVirtual()" << endl;
}

void Bar::unpureVirtual()
{
    cout << "Bar::unpureVirtual()" << endl;
}