include/relpipe/reader/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 17:04:11 +0200
branchv_0
changeset 12 2d7109286408
child 29 755978b0935c
permissions -rw-r--r--
remove format.h and use constants.h from lib-protocol

#pragma once

namespace relpipe {
namespace reader {

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

}
}