fileformat/DataTypes/CertificateAuthority.h
Go to the documentation of this file.
00001 #ifndef CERTIFICATEAUTHORITY_H
00002 #define CERTIFICATEAUTHORITY_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/RawData.h"
00011 #include "DataType.h"
00012 
00013 class CertificateAuthority : public DataType {
00014         Q_DECLARE_TR_FUNCTIONS(CertificateAuthority)
00015 public:
00016         
00017         int nationNumeric;
00018         QString nationAlpha;
00019         int keySerialNumber;
00020         RawData additionalInfo;
00021         int caIdentifer;
00022 
00023         CertificateAuthority(const DataPointer& filewalker);
00025 QString className() const;
00026         int size() const;
00027         static const int staticSize = 8;
00028         virtual void printOn(Reporter& report) const;
00029 };
00030 
00031 
00032 #endif