Skip to content

Commit 8ea3ddb

Browse files
committed
Add some stub for future refactoring (https://github.com/Xottab-DUTY/xray-16/issues/1)
1 parent 28c8703 commit 8ea3ddb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/Include/editor/interfaces.hpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@
99
#ifndef EDITOR_INTERFACES_HPP_INCLUDED
1010
#define EDITOR_INTERFACES_HPP_INCLUDED
1111

12+
namespace XRay
13+
{
14+
namespace Editor
15+
{
16+
class ide_base;
17+
class engine_base;
18+
19+
// XXX: is __cdecl needed?
20+
using initialize_function_ptr = void(__cdecl*)(ide_base*&, engine_base*);
21+
using finalize_function_ptr = void(__cdecl*)(ide_base*&);
22+
}
23+
}
24+
1225
namespace editor
1326
{
1427
class ide_base;

0 commit comments

Comments
 (0)