*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / data_block_0_label_extractor.hh
1 #ifndef DATA_BLOCK_0_LABEL_EXTRACTOR_H
2 #define DATA_BLOCK_0_LABEL_EXTRACTOR_H
3
4 #include <vector>
5 #include <string>
6
7 #include "data_block_0.hh"
8
9 /*!
10 *\brief Abstract class providing label extraction for some data_block_0 subtypes.
11 *
12 * This class cannot be instantiated.\n
13 */
14 class data_block_0_label_extractor
15 : public data_block_0
16 {
17
18 protected:
19 data_block_0_label_extractor(data_block_0 &);
20
21 protected:
22 vector<string> get_labels();
23
24 };
25
26 #endif