Files
qt-creator/share/qtcreator/templates/wizards/qtcreatorplugin/mypluginconstants.h
hjk 59a6702271 Wizards: Enforce use of #pragma once in the Creator Plugin template
This should match Creator style, no matter what the users uses for
own projects.

Change-Id: I32e052b24ed6d029cd3c7a466bdf8191d1657e4e
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2023-07-28 14:09:57 +00:00

10 lines
211 B
C

%{Cpp:LicenseTemplate}\
#pragma once
namespace %{PluginName}::Constants {
const char ACTION_ID[] = "%{PluginName}.Action";
const char MENU_ID[] = "%{PluginName}.Menu";
} // namespace %{PluginName}::Constants