forked from qt-creator/qt-creator
14 lines
374 B
C
14 lines
374 B
C
|
|
#ifndef %PluginName:u%CONSTANTS_%CppHeaderSuffix:u%
|
||
|
|
#define %PluginName:u%CONSTANTS_%CppHeaderSuffix:u%
|
||
|
|
|
||
|
|
namespace %PluginName% {
|
||
|
|
namespace Constants {
|
||
|
|
|
||
|
|
const char * const ACTION_ID = "%PluginName%.Action";
|
||
|
|
const char * const MENU_ID = "%PluginName%.Menu";
|
||
|
|
|
||
|
|
} // namespace %PluginName%
|
||
|
|
} // namespace Constants
|
||
|
|
|
||
|
|
#endif // %PluginName:u%CONSTANTS_%CppHeaderSuffix:u%
|