cvtdriver
Driver for SmartFarm Device Converter
메인 페이지
관련된 페이지
데이타 구조
파일들
파일 목록
전역
spec
cvtspec.h
이 파일의 문서화 페이지로 가기
1
12
#ifndef _CVT_SPEC_
13
#define _CVT_SPEC_
14
15
#include <iostream>
16
#include <string>
17
18
#include <glog/logging.h>
19
20
#include "
cvtcode.h
"
21
#include "
cvtoption.h
"
22
23
using namespace
std
;
24
25
namespace
stdcvt
{
26
27
/*
28
@brief CvtSpec 은 컨버터의 스펙을 다룬다.
29
*/
30
class
CvtSpec
{
31
private
:
32
string
_cvtserial;
33
int
_manufacturercode;
34
35
int
_cvtid;
36
string
_model;
37
string
_version;
38
39
public
:
43
CvtSpec
() {
44
_cvtserial =
""
;
45
_manufacturercode = 2000;
46
_cvtid = 1;
47
_model =
"STDCVT_2018.03"
;
48
_version =
"1.00"
;
49
}
50
51
~
CvtSpec
() {
52
}
53
};
54
55
}
56
#endif
cvtcode.h
std
stdcvt::CvtSpec
Definition:
cvtspec.h:30
stdcvt::CvtSpec::CvtSpec
CvtSpec()
Definition:
cvtspec.h:43
cvtoption.h
stdcvt
Definition:
cvtcode.h:17
생성시간 : 금 3월 23 2018 22:37:45, 프로젝트명 : cvtdriver, 생성자 :
1.8.11