X-Git-Url: http://gitweb.hachti.de/?a=blobdiff_plain;f=pc-tools%2Fldc2%2Fsrc%2Fdata_block_0_label_extractor.hh;fp=pc-tools%2Fldc2%2Fsrc%2Fdata_block_0_label_extractor.hh;h=f7c8a987e67153e19a9f0425c7ff60e1c98d8761;hb=09cb0f4f1082875e0e87d169c0cd373a7d3f9d80;hp=0000000000000000000000000000000000000000;hpb=6c06db96fb1c7482f8cb7e1d14eee91603fbb894;p=h316.git diff --git a/pc-tools/ldc2/src/data_block_0_label_extractor.hh b/pc-tools/ldc2/src/data_block_0_label_extractor.hh new file mode 100644 index 0000000..f7c8a98 --- /dev/null +++ b/pc-tools/ldc2/src/data_block_0_label_extractor.hh @@ -0,0 +1,25 @@ +#ifndef DATA_BLOCK_0_LABEL_EXTRACTOR_H +#define DATA_BLOCK_0_LABEL_EXTRACTOR_H + +#include +#include + +#include "data_block.hh" + +/*! + *\brief Abstract class providing label extraction for some data_block_0 subtypes. + * This class cannot be instantiated.\n + */ +class data_block_0_label_extractor + : public virtual data_block +{ + +private: + data_block_0_label_extractor(); + +protected: + vector get_labels(); + +}; + +#endif