forked from salamb/STPNC-MTConnect-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRawData.h
More file actions
34 lines (28 loc) · 739 Bytes
/
RawData.h
File metadata and controls
34 lines (28 loc) · 739 Bytes
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
#pragma once
using namespace System;
using namespace System;
using namespace System::Net;
using namespace System::Collections::Generic;
using namespace System::IO;
using namespace System::Text;
using namespace System::Xml;
using namespace System::Collections::Generic;
ref class RawData {
private:
const String^ TXTFILE = "TXT";
String^ sourceFile;
StreamReader ^read ;
const String^type;
List<array<double>^>^ coor;
public:
bool changeSourceTxt(String^ file);
//bool changeSourceXml(String^file);
//bool changeSourceMTConnect(String^ request);
bool parse();
RawData();
__int64 getSize();
bool RawData::parseTxt();
array<double>^getCoor(__int64 i);
double actualFeedRate(__int64, __int64);
void convertMMToInches();
};