fixed constant names and made all enums

This commit is contained in:
Efi Fogel 2008-01-12 16:02:22 +00:00
parent 119c269b23
commit 06d09e0ae0
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ protected:
Dac_decision m_decision; Dac_decision m_decision;
public: public:
/*! Constructor */ /*! Constructor */
Dcel_info() : m_is_set(false), m_decision(NOT_SET) Dcel_info() : m_is_set(false), m_decision(DAC_DECISION_NOT_SET)
{} {}
/*! \brief returns true iff data has been set already */ /*! \brief returns true iff data has been set already */
@ -62,7 +62,7 @@ public:
bool is_decision_set() bool is_decision_set()
{ {
return (m_decision != NOT_SET); return (m_decision != DAC_DECISION_NOT_SET);
} }
Dac_decision get_decision() Dac_decision get_decision()