fileformat/CardBlocks/CardBlock.h
Go to the documentation of this file.
00001 #ifndef CARDBLOCK_H
00002 #define CARDBLOCK_H
00003 
00004 #include "../TopLevelBlock.h"
00005 
00006 class CardBlock : public TopLevelBlock {
00007         public:
00008         CardBlock(const DataPointer& filewalker);
00009         int size() const;
00010 
00012         int dataBlockSize() const;
00013 
00014         QString className() const;
00015         
00016         virtual RawData signedBytes() const;
00017 
00018         protected:
00019         int datasize;
00020 
00021 };
00022 
00023 #endif