LAPTOP-SNT8I5JK\Boounion
2025-03-24 f0928d2abc4f3b5875d27b1beeb393cf5edf8c4a
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "stdafx.h"
#include "CGlass.h"
 
 
namespace SERVO {
    CGlass::CGlass()
    {
 
    }
 
    CGlass::~CGlass()
    {
 
    }
 
    std::string& CGlass::getClassName()
    {
        static std::string strName = "CGlass";
        return strName;
    }
 
    std::string CGlass::toString()
    {
        std::string strText;
        strText += "CGlass[";
        strText += ("ID:" + m_strID + ";");
        strText += "]";
 
        return strText;
    }
 
    void CGlass::setID(const char* pszID)
    {
        m_strID = pszID;
    }
 
    std::string& CGlass::getID()
    {
        return m_strID;
    }
 
    void CGlass::serialize(CArchive& ar)
    {
        if (ar.IsStoring())
        {
            Lock();
            WriteString(ar, m_strID);
            Unlock();
        }
        else
        {
            Lock();
            ReadString(ar, m_strID);
            Unlock();
        }
    }
}