include/relpipe/reader/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 27 Aug 2018 00:06:14 +0200
branchv_0
changeset 17 ec750c536705
parent 12 2d7109286408
child 29 755978b0935c
permissions -rw-r--r--
interface + dummy implementation

#pragma once

namespace relpipe {
namespace reader {

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

}
}