1234567891011121314151617181920212223242526272829303132333435 |
- //
- #include "stdafx.h"
- #include "DAP.BasicMoulds.hpp"
- ////-----------------------------------------------------------------------------
- //// FloatMould
- ////-----------------------------------------------------------------------------
- //string FloatMould::GetDescription ()
- //{
- // ResDataObject temp, result;
- //// temp.add (DIMENSION, Dimension.c_str ());
- // temp.add (ValKey::UPPERLIMIT, m_LimitMax);
- // temp.add (ValKey::LOWERLIMIT, m_LimitMin);
- // temp.add (ValKey::ACCURACY, m_Accuracy);
- // result.add(Key.c_str(), temp);
- // return result.encode();
- //}
- //
- //string FloatMould::GetAttribute ()
- //{
- // ResDataObject temp;
- // temp.add (Key.c_str (), (float)m_Value);
- // return temp.encode();
- //}
- //
- //std::string FloatMould::JSGet()
- //{
- // return std::to_string(m_Value);
- //}
- //std::string FloatMould::GetKey()
- //{
- // return Key;
- //}
|