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)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
#pragma once
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
namespace relpipe {
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
namespace reader {
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
enum class TypeId {
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
	BOOLEAN = 1,
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
	INTEGER = 2,
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
	STRING = 3,
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
};
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
}
2d7109286408 remove format.h and use constants.h from lib-protocol
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
}