15 lines
214 B
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
#ifndef SHAREDLIB_H
#define SHAREDLIB_H
#include "shareddependlib.h"
2020-02-01 23:06:01 +01:00
#include "sharedlib_export.h"
2014-08-03 19:52:23 +02:00
struct SHAREDLIB_EXPORT SharedLibObject
{
SharedDependLibObject object() const;
int foo() const;
};
#endif