include/relpipe/writer/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 20:30:55 +0200
branchv_0
changeset 20 bef6648e79b1
parent 13 include/TypeId.h@e7234dd45166
child 29 142bdbba520f
permissions -rw-r--r--
relpipe-lib-writer: move public header files to: include/relpipe/writer/

#pragma once

namespace relpipe {
namespace writer {

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

}
}