mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-15 19:20:44 -06:00
11 lines
162 B
C++
11 lines
162 B
C++
|
|
#include "nodeprecatedlib_export.h"
|
|
|
|
class NODEPRECATEDLIB_EXPORT SomeClass
|
|
{
|
|
public:
|
|
#ifndef NODEPRECATEDLIB_NO_DEPRECATED
|
|
void someMethod() const;
|
|
#endif
|
|
};
|