summaryrefslogtreecommitdiff
path: root/Tests/InstallMode/subpro_b_shared_lib/src/shared_lib.cpp
blob: 2820d5d02f61ba92e88218ab8278ea7394832dfd (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

#include <shared_lib.h>

using namespace std;

void shared_hello()
{
  cout << "Hello from shared_lib" << endl;
}