blob: 5b3c7db732ea09282dadd359d284ea88a6cfd65d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SHAREDLIB_H
#define SHAREDLIB_H
#include "sharedlib_export.h"
#include "shareddependlib.h"
struct SHAREDLIB_EXPORT SharedLibObject
{
SharedDependLibObject object() const;
int foo() const;
};
#endif
|