/* * Catalog.cpp * * Created on: 5 nov 2014 * Author: AKKA */ #include "Catalog.hh" namespace TimeTableCatalog { log4cxx::LoggerPtr Catalog::_logger( log4cxx::Logger::getLogger("AMDA-Kernel.TimeTable")); Catalog::Catalog() : TimeTable() { } Catalog::Catalog(TIME_FORMAT pFormat) : TimeTable (pFormat) { } Catalog::~Catalog() { } void Catalog::addParameterDescription(const ParameterDescription& parameterDescription) { _parameterDescritptions.push_back (parameterDescription); } const std::vector& Catalog::getParameterDescriptions() const { return _parameterDescritptions; } } /* namespace TimeTableCatalog */