validable.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "core/common.hpp"
5
6namespace by {
7
11 class _nout validable {
12 BY_ME(validable)
13 BY_INIT_META(me)
14
15 public:
16 virtual nbool isValid() const = 0;
17 };
18}
Interface for objects with validation state.
Definition: validable.hpp:11