#ifndef STATE_H #define STATE_H namespace mdd { enum class state : char { ERROR = -1, CHANGED = 0, UNCHANGED = 1, }; } #endif