aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/dynamic-libs/lib4.cpp
blob: c0ead47215273e141b9793e5bb6369dea24e03a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "lib4.h"

TestMe::TestMe()
{
}

void TestMe::hello1() const
{
    puts("lib4 says hello!");
}

void TestMe::hello2Impl() const
{
    puts("lib4 says hello inline!");
}