include/relpipe/reader/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 18:25:02 +0200
branchv_0
changeset 15 09ca53671b28
parent 12 2d7109286408
child 29 755978b0935c
permissions -rw-r--r--
remove DataTypeReader.cpp (move implementation to DataTypeReader.h)
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
}