include/relpipe/reader/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 09 Sep 2018 22:47:18 +0200
branchv_0
changeset 23 25a53f4cd9eb
parent 12 2d7109286408
child 29 755978b0935c
permissions -rw-r--r--
remove obsolete DataTypeReaderCatalog.h

#pragma once

namespace relpipe {
namespace reader {

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

}
}