Blame view

src/TimeTableCatalog/Catalog.cc 657 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * 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<ParameterDescription>& Catalog::getParameterDescriptions() const {
	return _parameterDescritptions;
}

} /* namespace TimeTableCatalog */