LAPTOP-SNT8I5JK\Boounion
2025-06-30 dba7d2725cefc162ef58a53bb12b4656434c8bc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#pragma once
#include <vector>
#include <string>
 
 
namespace SERVO {
    class CJobDataA
    {
    public:
        CJobDataA();
        virtual ~CJobDataA();
 
    public:
        void* getOwner();
        void setOwner(void* pOwner);
        short getPortNo();
        std::string& getCarrierId();
        std::string& getPruductId();
        short getCarrierState();
        std::string& getCarrierStateDescription(std::string& strDescription);
        int getSlotMapping();
        int getSlotSelectedFlag();
        std::vector<std::string>& getGlassIds();
        int serialize(char* pszBuffer, int nBufferSize);
        int unserialize(const char* pszBuffer, int nBufferSize);
 
    private:
        void* m_pOwner;
        short m_nPortNo;
        std::string m_strCarrierId;
        std::string m_pruductId;
        short m_nCarrierState;
        int m_nSlotMapping;
        int m_nSlotSelectedFlag;
        std::vector<std::string> m_glassIds;
    };
}