Loading...
Searching...
No Matches
dumpable.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "indep/common.hpp"
5#include "indep/def.hpp"
6
7namespace by {
13 class _nout dumpable {
14 public:
18 virtual void dump() const = 0;
19 };
20}
Interface for objects that can dump their state.
Definition dumpable.hpp:13
virtual void dump() const =0
Dump object state for debugging.