SpaceData.hh
1.35 KB
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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: SpaceData.hh
* Author: hacene
*
* Created on May 31, 2021, 9:17 AM
*/
#ifndef SPACEDATA_HH
#define SPACEDATA_HH
#include <string>
namespace TimeTableCatalog {
class SpaceData {
public:
// ASCII data
static const std::string SEPARATOR;
static const std::string EVENT_TABLE_VERSION_KEYWORD;
static const std::string LIST_TITLE_KEYWORD;
static const std::string LIST_ID_KEYWORD;
static const std::string CREATION_DATE_KEYWORD;
static const std::string MODIFY_DATE_KEYWORD;
static const std::string FIELD_NAMES_KEYWORD;
static const std::string FIELD_UNIT_KEYWORD;
static const std::string FIELD_TYPES_KEYWORD;
static const std::string FIELD_NULLS_KEYWORD;
static const std::string LIST_START_DATE_KEYWORD;
static const std::string LIST_STOP_DATE_KEYWORD;
static const std::string CONTACT_KEYWORD;
static const std::string CONTACT_ID_KEYWORD;
static const std::string DESCRIPTION_KEYWORD;
static const std::string EVENT_TABLE_VERSION_DEFAULT;
static const std::string LIST_ID_DEFAULT;
};
}
#endif /* SPACEDATA_HH */