include/relpipe/reader/handlers/RelationalReaderValueHandler.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 19:10:24 +0200
branchv_0
changeset 16 9b8139bb0519
child 29 755978b0935c
permissions -rw-r--r--
handler structure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
#pragma once
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
#include <vector>
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
#include "../TypeId.h"
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
#include "RelationalReaderBaseHandler.h"
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
namespace relpipe {
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
namespace reader {
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
namespace handlers {
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
class RelationalReaderValueHadler : public RelationalReaderBaseHadler {
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
public:
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
	virtual void attribute(const void* value, const std::type_info& type) = 0;
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
};
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
}
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
}
9b8139bb0519 handler structure
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
}