blob: ad9b484b7a895d2e4eddb7f655e6ba1234280f63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SHAREDDEPENDLIB_H
#define SHAREDDEPENDLIB_H
#include "shareddependlib_export.h"
struct SHAREDDEPENDLIB_EXPORT SharedDependLibObject
{
int foo() const;
};
#endif
|