Horizon
src
pool-mgr
editor_interface.hpp
1
#pragma once
2
3
namespace
horizon
{
4
class
PoolEditorInterface
{
5
public
:
6
virtual
void
reload()
7
{
8
}
9
virtual
void
save()
10
{
11
needs_save =
false
;
12
}
13
bool
get_needs_save()
14
{
15
return
needs_save;
16
}
17
18
protected
:
19
bool
needs_save =
false
;
20
};
21
}
// namespace horizon
horizon::PoolEditorInterface
Definition:
editor_interface.hpp:4
horizon
Definition:
block.cpp:7
Generated by
1.8.13