mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
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
|