-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfaceEnabler.hpp
67 lines (52 loc) · 2.72 KB
/
InterfaceEnabler.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
/*******************************************************************************
* FILE NAME: InterfaceEnabler.hpp *
* *
* DESCRIPTION: *
* Declaration of the class: *
* InterfaceEnabler- Enables interface components when sprite is ready *
* ---------------------------------------------------------------------------- *
* 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 _INTERFACEENABLER_
#define _INTERFACEENABLER_
class InterfaceEnabler;
#ifndef _ISTDNTFY_
#include <istdntfy.hpp>
#endif
#include "InterfaceEnabler.h"
/*----------------------------------------------------------------------------*/
/* Align classes on four byte boundary. */
/*----------------------------------------------------------------------------*/
#pragma pack(4)
//*****************************************************************************
// Class definition for InterfaceEnabler
//*****************************************************************************
class InterfaceEnabler : public IStandardNotifier {
public:
//---------------------------------------------------------------------------
// Constructors / destructors
//---------------------------------------------------------------------------
InterfaceEnabler();
virtual ~InterfaceEnabler();
//---------------------------------------------------------------------------
// public member functions
//---------------------------------------------------------------------------
virtual InterfaceEnabler & initializePart();
//---------------------------------------------------------------------------
// public member data
//---------------------------------------------------------------------------
static const INotificationId readyId;
protected:
//---------------------------------------------------------------------------
// protected member functions
//---------------------------------------------------------------------------
Boolean makeConnections();
private:
#include "InterfaceEnabler.hpv"
}; //InterfaceEnabler
/*----------------------------------------------------------------------------*/
/* Resume compiler default packing. */
/*----------------------------------------------------------------------------*/
#pragma pack()
#endif