SpaceData.hh 1.35 KB
/*
 * 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 */