diff --git a/include/tool/tool_manager.h b/include/tool/tool_manager.h index 8406feef5a..7bd289535b 100644 --- a/include/tool/tool_manager.h +++ b/include/tool/tool_manager.h @@ -25,8 +25,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ -#ifndef __TOOL_MANAGER_H -#define __TOOL_MANAGER_H +#ifndef TOOL_MANAGER_H +#define TOOL_MANAGER_H #include #include @@ -36,17 +36,11 @@ #include #include - -namespace KIGFX -{ -class VIEW_CONTROLS; -struct VC_SETTINGS; -} +#include class COMMIT; class TOOLS_HOLDER; class TOOL_ACTION; -class TOOL_BASE; class ACTION_MANAGER; class ACTION_MENU; class APP_SETTINGS_BASE; @@ -646,6 +640,7 @@ private: */ void setActiveState( TOOL_STATE* aState ); +private: ///< List of tools in the order they were registered std::vector m_toolOrder; @@ -697,4 +692,4 @@ private: bool m_shuttingDown; }; -#endif // __TOOL_MANAGER_H +#endif // TOOL_MANAGER_H