forked from qt-creator/qt-creator
Change-Id: Ida52d0998739db76a1a1d61da9271d2989a27649 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
21 lines
390 B
C++
21 lines
390 B
C++
%{Cpp:LicenseTemplate}\
|
|
@if '%{Cpp:PragmaOnce}'
|
|
#pragma once
|
|
@else
|
|
#ifndef %{CONSTANTS_GUARD}
|
|
#define %{CONSTANTS_GUARD}
|
|
@endif
|
|
|
|
namespace %{PluginName} {
|
|
namespace Constants {
|
|
|
|
const char ACTION_ID[] = "%{PluginName}.Action";
|
|
const char MENU_ID[] = "%{PluginName}.Menu";
|
|
|
|
} // namespace Constants
|
|
} // namespace %{PluginName}
|
|
|
|
@if ! '%{Cpp:PragmaOnce}'
|
|
#endif // %{CONSTANTS_GUARD}
|
|
@endif
|