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