aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/link-dynamiclibs-staticlibs/dynamic2.cpp
blob: d5fcbaab47549086029fb678abf7da7b1d7a84d9 (plain)
1
2
3
4
5
6
7
8
9
10
#include "../dllexport.h"
#include "static2.h"
#include <cstdio>

DLL_EXPORT void dynamic2_hello()
{
    TestMe tm;
    tm.hello();
    std::puts("dynamic2 says hello!");
}