include/relpipe/writer/AttributeMetadata.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 09 Sep 2018 23:20:57 +0200
branchv_0
changeset 27 a64afb2d24c9
child 29 142bdbba520f
permissions -rw-r--r--
use AttributeMetadata instead of std::pair for relation header

#pragma once

#include "TypeId.h"

namespace relpipe {
namespace writer {

class AttributeMetadata {
public:
	string_t attributeName;
	relpipe::writer::TypeId typeId;
};

}
}