Blame view

src/TimeTableCatalog/SpaceData.hh 1.35 KB
04d31e39   Hacene SI HADJ MOHAND   new format ok
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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 {

a1184f24   Hacene SI HADJ MOHAND   HPEvent in progress
19
20
21
22
23
    class SpaceData {
    public:

        // ASCII data
        static const std::string SEPARATOR;
d1774421   Hacene SI HADJ MOHAND   Kernek ok
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
        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;
a1184f24   Hacene SI HADJ MOHAND   HPEvent in progress
41
42

    };
04d31e39   Hacene SI HADJ MOHAND   new format ok
43
44
45
}

#endif /* SPACEDATA_HH */