include/relpipe/reader/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 18:25:02 +0200
branchv_0
changeset 15 09ca53671b28
parent 12 2d7109286408
child 29 755978b0935c
permissions -rw-r--r--
remove DataTypeReader.cpp (move implementation to DataTypeReader.h)

#pragma once

namespace relpipe {
namespace reader {

enum class TypeId {
	BOOLEAN = 1,
	INTEGER = 2,
	STRING = 3,
};

}
}