16 lines
183 B
C++
16 lines
183 B
C++
#ifndef TOOLS__EXITER_HPP
|
|
#define TOOLS__EXITER_HPP
|
|
|
|
namespace tools
|
|
{
|
|
class Exiter
|
|
{
|
|
public:
|
|
Exiter();
|
|
|
|
bool exit() const;
|
|
};
|
|
|
|
} // namespace tools
|
|
|
|
#endif // TOOLS__EXITER_HPP
|