-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphicFileInfo.hpp
71 lines (54 loc) · 2.76 KB
/
GraphicFileInfo.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
/*******************************************************************************
* FILE NAME: GraphicFileInfo.hpp *
* *
* DESCRIPTION: *
* Declaration of the class: *
* GraphicFileInfo- Graphic File Information *
* ---------------------------------------------------------------------------- *
* 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 _GRAPHICFILEINFO_
#define _GRAPHICFILEINFO_
class GraphicFileInfo;
#ifndef _ISTDNTFY_
#include <istdntfy.hpp>
#endif
#include "fstream.h"
#include "stdlib.h"
#include "GraphicFileInfo.h"
/*----------------------------------------------------------------------------*/
/* Align classes on four byte boundary. */
/*----------------------------------------------------------------------------*/
#pragma pack(4)
//*****************************************************************************
// Class definition for GraphicFileInfo
//*****************************************************************************
class GraphicFileInfo : public IStandardNotifier {
public:
//---------------------------------------------------------------------------
// Constructors / destructors
//---------------------------------------------------------------------------
GraphicFileInfo();
virtual ~GraphicFileInfo();
//---------------------------------------------------------------------------
// public member functions
//---------------------------------------------------------------------------
virtual GraphicFileInfo & initializePart();
//---------------------------------------------------------------------------
// public member data
//---------------------------------------------------------------------------
static const INotificationId readyId;
protected:
//---------------------------------------------------------------------------
// protected member functions
//---------------------------------------------------------------------------
virtual Boolean makeConnections();
private:
#include "GraphicFileInfo.hpv"
}; //GraphicFileInfo
/*----------------------------------------------------------------------------*/
/* Resume compiler default packing. */
/*----------------------------------------------------------------------------*/
#pragma pack()
#endif