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 {
12 class _nout dumpable {
13 public:
15 virtual void dump() const = 0;
16 };
17}
Interface for objects that can dump their state.
Definition: dumpable.hpp:12
virtual void dump() const =0
Dump object state for debugging.