summaryrefslogtreecommitdiffstats
path: root/Tests/InterfaceLibrary/sharedlibtestexe.cpp
blob: 44f160da8bf490dd7acb924f79b75a7631701aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#ifndef SHAREDLIB_DEFINE
#error Expected SHAREDLIB_DEFINE
#endif

#ifndef SHAREDDEPENDLIB_DEFINE
#error Expected SHAREDDEPENDLIB_DEFINE
#endif

#include "sharedlib.h"
#include "shareddependlib.h"

int main(int, char**)
{
  SharedLibObject sl;
  SharedDependLibObject sdl = sl.object();

  return sdl.foo() + sl.foo();
}