Alternate e697dbe9c5997e35395fe158628dd8c5209481da
for Visual Studio 2022 and Windows 11.
読み取り中…
検索中…
一致する文字列を見つけられません
IFactoryMethod.cpp
[詳解]
1#include "pch.h"
2#include "IFactoryMethod.h"
3
4using namespace alt;
5using namespace alt::FactoryMethod;
6
7IData::IData (int seqNo)
8{
9 _seqNo = seqNo;
10 ZeroMemory (&_createDateTime, sizeof (_createDateTime));
11}
12
14{
15 _seqNo = -1;
16 ZeroMemory (&_createDateTime, sizeof (_createDateTime));
17}
18
20{
21
22}
23
25{
26 _to = -1;
27 _from = -1;
28 _command = -1;
29}
30
32{
33
34}
35
36void IMessage::SetParam (int to, int from, int command)
37{
38 _to = to;
39 _from = from;
40 _command = command;
41}
42
44{
45
46}
47
49{
50
51}
52
54{
55 _id = -1;
56 _productName = nullptr;
57}
58
59IProduct::IProduct (int id, TString productName)
60{
61 _id = id;
62 _productName = productName;
63}
64
66{
67
68}
69
71{
72 _product = nullptr;
73}
74
76{
77 _elementName = elementName;
78}
79
81{
82
83}
84
86{
87
88}
89
91{
92
93}
94
96{
97
98}
99
101{
102
103}
104
106{
107
108}
109
111{
112
113}
114
116{
117
118}
プリコンパイル済みヘッダー ファイルです。
void SetParam(int to, int from, int command)
文字列に関するWindowsAPIを集約したクラス
Definition: TString.h:17
Definition: DBLibrary.h:12