#include <cassert>
#include <stdair/basic/BasFileMgr.hpp>
#include <stdair/bom/BomRoot.hpp>
#include <stdair/service/Logger.hpp>
#include <airtsp/command/OnDParserHelper.hpp>
#include <airtsp/command/OnDPeriodGenerator.hpp>
Go to the source code of this file.
|
chset_t | AIRTSP::OnDParserHelper::alpha_cap_set_p ("A-Z") |
|
repeat_p_t | AIRTSP::OnDParserHelper::airport_p (chset_t("0-9A-Z").derived(), 3, 3) |
|
repeat_p_t | AIRTSP::OnDParserHelper::airline_code_p (alpha_cap_set_p.derived(), 2, 3) |
|
bounded4_p_t | AIRTSP::OnDParserHelper::year_p (uint4_p.derived(), 2000u, 2099u) |
|
bounded2_p_t | AIRTSP::OnDParserHelper::month_p (uint2_p.derived(), 1u, 12u) |
|
bounded2_p_t | AIRTSP::OnDParserHelper::day_p (uint2_p.derived(), 1u, 31u) |
|
bounded2_p_t | AIRTSP::OnDParserHelper::hours_p (uint2_p.derived(), 0u, 23u) |
|
bounded2_p_t | AIRTSP::OnDParserHelper::minutes_p (uint2_p.derived(), 0u, 59u) |
|
bounded2_p_t | AIRTSP::OnDParserHelper::seconds_p (uint2_p.derived(), 0u, 59u) |
|
chset_t | AIRTSP::OnDParserHelper::class_code_p ("A-Z") |
|