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