forked from Thomas-Mielke-Software/ECTImport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSVFile.h
25 lines (19 loc) · 805 Bytes
/
CSVFile.h
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
/*//////////////////////////////////////////////////////////////////////////////
// Name: cvsfile.h
// Purpose: Interface of CCSVFile
// Author: Ruediger Herrmann
// Copyright: (c) Ruediger Herrmann
//////////////////////////////////////////////////////////////////////////////*/
#if !defined(AFX_CSVFILE_H__F34C42CF_690D_4132_9867_8FAD0BAC637C__INCLUDED_)
#define AFX_CSVFILE_H__F34C42CF_690D_4132_9867_8FAD0BAC637C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCSVFile : public CStdioFile {
public:
CCSVFile();
virtual ~CCSVFile();
void ParseString ( CString& Line, CStringArray& Items, const CString& ExternalSeparatorChar = _T(";") );
private:
};
#endif // !defined(AFX_CSVFILE_H__F34C42CF_690D_4132_9867_8FAD0BAC637C__INCLUDED_)