fileformat/DataTypes/ExtendedSerialNumber.h
Go to the documentation of this file.
00001 #ifndef EXTENDEDSERIALNUMBER_H
00002 #define EXTENDEDSERIALNUMBER_H
00003 
00004 
00005 //This file was AUTO-GENERATED. Make changes in the generator script(./generate.py)
00006 //the derived classes or in the data definition
00007 
00008 
00009 
00010 #include "../DataTypes/BcdMonthYear.h"
00011 #include "DataType.h"
00012 
00013 class ExtendedSerialNumber : public DataType {
00014         Q_DECLARE_TR_FUNCTIONS(ExtendedSerialNumber)
00015 public:
00016         
00017         int serialNumber;
00018         BcdMonthYear date;
00019         int equipmentType;
00020         int manufacturerCode;
00021 
00022         ExtendedSerialNumber(const DataPointer& filewalker);
00024 QString className() const;
00025         int size() const;
00026         static const int staticSize = 8;
00027         QString toString() const;
00028         virtual void printOn(Reporter& report) const;
00029 };
00030 
00031 
00032 #endif