#pragma once #include #include namespace SERVO { class CJobDataB { public: CJobDataB(); ~CJobDataB(); public: int serialize(char* pszBuffer, int nBufferSize); private: short m_nPortNo; std::string m_strCarrierId; std::string m_pruductId; short m_nCarrierState; int m_nSlotMapping; int m_nSlotSelectedFlag; std::vector m_glassIds; }; }