include/relpipe/reader/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 16 Sep 2018 18:00:34 +0200
branchv_0
changeset 28 c9e03557c1e1
parent 12 2d7109286408
child 29 755978b0935c
permissions -rw-r--r--
AttributeMetadata: call vector.clear() before vector.reserve(), fixes error (if there are multiple relations in the stream)

#pragma once

namespace relpipe {
namespace reader {

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

}
}