Added structures for parsing of tariff05 in bad neuenahr
This commit is contained in:
		@@ -29,6 +29,8 @@
 | 
				
			|||||||
#include "tariff_prepaid.h"
 | 
					#include "tariff_prepaid.h"
 | 
				
			||||||
#include "tariff_carryover.h"
 | 
					#include "tariff_carryover.h"
 | 
				
			||||||
#include "tariff_permit_type.h"
 | 
					#include "tariff_permit_type.h"
 | 
				
			||||||
 | 
					#include "tariff_service.h"
 | 
				
			||||||
 | 
					#include "tariff_out_of_service.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <QVector>
 | 
					#include <QVector>
 | 
				
			||||||
#include <optional>
 | 
					#include <optional>
 | 
				
			||||||
@@ -50,6 +52,10 @@ public:
 | 
				
			|||||||
    using TariffPrepaidType = std::multimap<int, ATBPrepaid>;
 | 
					    using TariffPrepaidType = std::multimap<int, ATBPrepaid>;
 | 
				
			||||||
    using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
					    using TariffCarryOverType = std::multimap<int, ATBCarryOver>;
 | 
				
			||||||
    using TariffDurationType = std::multimap<int, ATBDuration>;
 | 
					    using TariffDurationType = std::multimap<int, ATBDuration>;
 | 
				
			||||||
 | 
					    using TariffServiceType = std::multimap<int, ATBTariffService>;
 | 
				
			||||||
 | 
					    using TariffOutOfServiceType = std::multimap<int, ATBTariffOutOfService>;
 | 
				
			||||||
 | 
					    using ATBTariffPrepaidType = std::multimap<int, ATBTariffPrepaid>;
 | 
				
			||||||
 | 
					    using ATBTariffCarryOverType = std::multimap<int, ATBTariffCarryOver>;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ATBProject project;
 | 
					    ATBProject project;
 | 
				
			||||||
    ATBCurrency Currency;
 | 
					    ATBCurrency Currency;
 | 
				
			||||||
@@ -73,6 +79,10 @@ public:
 | 
				
			|||||||
	TariffInterpolationType TariffInterpolations;
 | 
						TariffInterpolationType TariffInterpolations;
 | 
				
			||||||
	TariffPrepaidType TariffPrepaidOptions;
 | 
						TariffPrepaidType TariffPrepaidOptions;
 | 
				
			||||||
	TariffCarryOverType TariffCarryOverOptions;
 | 
						TariffCarryOverType TariffCarryOverOptions;
 | 
				
			||||||
 | 
					    TariffServiceType TariffServices;
 | 
				
			||||||
 | 
					    TariffOutOfServiceType TariffOutOfServices;
 | 
				
			||||||
 | 
					    ATBTariffPrepaidType TariffPrepaids;
 | 
				
			||||||
 | 
					    ATBTariffCarryOverType TariffCarryOvers;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/// <summary>
 | 
						/// <summary>
 | 
				
			||||||
	/// Parse JSON string
 | 
						/// Parse JSON string
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user