src/DataTypeReaderBase.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Jul 2018 00:43:42 +0200
branchv_0
changeset 9 517888868e55
parent 4 da021e58c946
child 10 7fe3975f7e4b
permissions -rw-r--r--
fix includes

#include <string>
#include "../include/DataTypeReaderBase.h"

namespace relpipe {
namespace reader {

bool DataTypeReaderBase::supports(const integer_t &dataType) {
	return dataType == typeId;
}

bool DataTypeReaderBase::supports(const string_t &dataType) {
	return dataType == typeCode;
}

integer_t DataTypeReaderBase::getTypeId() {
	return typeId;
}

string_t DataTypeReaderBase::getTypeCode() {
	return typeCode;
}

}
}