LAPTOP-SNT8I5JK\Boounion
2025-08-11 5edb485d226790306097e40ea954efb2ed90dd21
SourceCode/Bond/Servo/CVariable.h
@@ -21,16 +21,23 @@
   public:
      static SVFromat toFormat(const char* pszFormat);
      static std::string formatToString(SVFromat format);
      unsigned int getVarialbleId();
      std::string& getName();
      SVFromat getFormat();
      std::string& getRemark();
      void setValue(__int64 value);
      void setValue(const char* pszValue);
      std::string getValue();
      __int64 getIntValue();
   private:
      unsigned int m_nVarialbeId;
      std::string m_strName;
      SVFromat m_format;
      std::string m_strRemark;
      __int64 m_nValue;
      std::string m_strValue;
   };
}