include/TypeId.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 22 Jul 2018 22:21:49 +0200
branchv_0
changeset 17 f2cccaa9dd38
parent 13 e7234dd45166
permissions -rw-r--r--
replace writeRecord() with sequence of writeAttribute()

#pragma once

namespace relpipe {
namespace writer {

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

}
}