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