fileformat/DataTypes/RawData.h
Go to the documentation of this file.
00001 #ifndef RAWDATA_H
00002 #define RAWDATA_H
00003 
00004 #include "DataType.h"
00005 #include "../DataPointer.h"
00006 
00007 class RawData : public DataType, public DataPointer {
00008 public:
00009         int length_;
00010         RawData(const DataPointer& start, int length);
00011         RawData(const QByteArray& o);
00012         QString toString() const;
00013         QString className() const;
00014         
00015         int size() const;
00016         QByteArray toQByteArray() const;
00017         void printOn(Reporter& report) const;
00018 };
00019 
00020 #endif