diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:31:46 -0800 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:46:31 -0800 |
| commit | f56bb35301836e56582a575a75864392a0177875 (patch) | |
| tree | de61ddd39de3e7df52759711950b4c288592f0dc /mp/src/public/toolframework/itooldictionary.h | |
| parent | Mark some more files as text. (diff) | |
| download | source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip | |
Fix line endings. WHAMMY.
Diffstat (limited to 'mp/src/public/toolframework/itooldictionary.h')
| -rw-r--r-- | mp/src/public/toolframework/itooldictionary.h | 78 |
1 files changed, 39 insertions, 39 deletions
diff --git a/mp/src/public/toolframework/itooldictionary.h b/mp/src/public/toolframework/itooldictionary.h index e29af3ea..96465f16 100644 --- a/mp/src/public/toolframework/itooldictionary.h +++ b/mp/src/public/toolframework/itooldictionary.h @@ -1,39 +1,39 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================
-
-#ifndef ITOOLDICTIONARY_H
-#define ITOOLDICTIONARY_H
-
-#ifdef _WIN32
-#pragma once
-#endif
-
-#include "appframework/IAppSystem.h"
-
-//-----------------------------------------------------------------------------
-// Forward declaration
-//-----------------------------------------------------------------------------
-class IToolSystem;
-
-
-//-----------------------------------------------------------------------------
-// Purpose: Every tool dll sitting in bin\tools must expose this interface
-// The engine will load the .dll, get this interface, and then ask for all
-// tools in the .dll
-// The engine will call CreateTools just before querying for the tools, so you
-// can instance any dynamically instanced tools during that call
-//-----------------------------------------------------------------------------
-class IToolDictionary : public IAppSystem
-{
-public:
- virtual void CreateTools() = 0;
- virtual int GetToolCount() const = 0;
- virtual IToolSystem *GetTool( int index ) = 0;
-};
-
-#define VTOOLDICTIONARY_INTERFACE_VERSION "VTOOLDICTIONARY002"
-
-#endif // ITOOLDICTIONARY_H
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= + +#ifndef ITOOLDICTIONARY_H +#define ITOOLDICTIONARY_H + +#ifdef _WIN32 +#pragma once +#endif + +#include "appframework/IAppSystem.h" + +//----------------------------------------------------------------------------- +// Forward declaration +//----------------------------------------------------------------------------- +class IToolSystem; + + +//----------------------------------------------------------------------------- +// Purpose: Every tool dll sitting in bin\tools must expose this interface +// The engine will load the .dll, get this interface, and then ask for all +// tools in the .dll +// The engine will call CreateTools just before querying for the tools, so you +// can instance any dynamically instanced tools during that call +//----------------------------------------------------------------------------- +class IToolDictionary : public IAppSystem +{ +public: + virtual void CreateTools() = 0; + virtual int GetToolCount() const = 0; + virtual IToolSystem *GetTool( int index ) = 0; +}; + +#define VTOOLDICTIONARY_INTERFACE_VERSION "VTOOLDICTIONARY002" + +#endif // ITOOLDICTIONARY_H |