Files
int2ssl/StartupCode.h
T

25 lines
331 B
C++
Raw Normal View History

2015-02-13 16:59:11 +03:00
#ifndef STARTUP_CODE_H
#define STARTUP_CODE_H
#include "Opcode.h"
// CStartupCode
2015-02-13 22:31:52 +03:00
class CStartupCode
{
2015-02-13 16:59:11 +03:00
public:
2015-02-13 22:31:52 +03:00
2015-02-14 13:39:47 +03:00
enum Defaults {
c_nDefaultSize = 42
};
2015-02-13 16:59:11 +03:00
2015-02-14 13:39:47 +03:00
CStartupCode();
virtual ~CStartupCode();
virtual void Serialize(CArchive& ar);
2015-02-13 16:59:11 +03:00
private:
2015-02-14 13:39:47 +03:00
COpcode m_Code[17];
2015-02-13 16:59:11 +03:00
};
#endif