rm_vision/tools/exiter.hpp
2025-12-15 02:33:20 +08:00

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