14 lines
187 B
C
14 lines
187 B
C
|
|
||
|
#ifndef USEPREFIXCLASS_H
|
||
|
#define USEPREFIXCLASS_H
|
||
|
|
||
|
#include "use_prefix_lib_export.h"
|
||
|
|
||
|
class MYPREFIX_USE_PREFIX_LIB_EXPORT UsePrefixClass
|
||
|
{
|
||
|
public:
|
||
|
int someMethod() const;
|
||
|
};
|
||
|
|
||
|
#endif
|