fileformat/VuBlocks/VuUnknownBlock.h
Go to the documentation of this file.
00001 #ifndef VUUNKNOWNBLOCK_H
00002 #define VUUNKNOWNBLOCK_H
00003 
00004 #include "VuBlock.h"
00005 
00009 class VuUnknownBlock : public VuBlock {
00010         Q_DECLARE_TR_FUNCTIONS(VuUnknownBlock)
00011         public:
00012         RawData data;
00013         VuUnknownBlock(const DataPointer& start);
00014 
00015         virtual int size() const;
00016 
00017         virtual QString title() const;
00018 
00019         virtual QString className() const;
00020         
00021         virtual void printOn(Reporter& o) const;
00022 
00023 };
00024 
00025 #endif