-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPcxLoader.hpp
73 lines (55 loc) · 2.72 KB
/
PcxLoader.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
* FILE NAME: PcxLoader.hpp *
* *
* DESCRIPTION: *
* Declaration of the class: *
* PcxLoader- Loads PCX files *
* ---------------------------------------------------------------------------- *
* Warning: This file was generated by the VisualAge C++ Visual Builder. *
* Modifications to this source file will be lost when the part is regenerated. *
*******************************************************************************/
#ifndef _PCXLOADER_
#define _PCXLOADER_
class PcxLoader;
#ifndef _ISTDNTFY_
#include <istdntfy.hpp>
#endif
#include "fstream.h"
#include "iostream.h"
#include "assert.h"
#include "PcxLoader.h"
/*----------------------------------------------------------------------------*/
/* Align classes on four byte boundary. */
/*----------------------------------------------------------------------------*/
#pragma pack(4)
//*****************************************************************************
// Class definition for PcxLoader
//*****************************************************************************
class PcxLoader : public IStandardNotifier {
public:
//---------------------------------------------------------------------------
// Constructors / destructors
//---------------------------------------------------------------------------
PcxLoader();
virtual ~PcxLoader();
//---------------------------------------------------------------------------
// public member functions
//---------------------------------------------------------------------------
virtual PcxLoader & initializePart();
//---------------------------------------------------------------------------
// public member data
//---------------------------------------------------------------------------
static const INotificationId readyId;
protected:
//---------------------------------------------------------------------------
// protected member functions
//---------------------------------------------------------------------------
virtual Boolean makeConnections();
private:
#include "PcxLoader.hpv"
}; //PcxLoader
/*----------------------------------------------------------------------------*/
/* Resume compiler default packing. */
/*----------------------------------------------------------------------------*/
#pragma pack()
#endif