#include <relocationinfo.h>
Public Types | |
typedef enum Relocation::_Type | Type |
enum | _Type { relNone, relRelative, relAbsolute } |
Public Methods | |
Relocation (Type _type=relNone) | |
Type | GetType () const |
void | SetType (Type _type) |
Private Attributes | |
Type | type |
|
Referenced by GetType(), Relocation(), and SetType(). |
|
Definition at line 37 of file relocationinfo.h.
00037 { relNone, relRelative, relAbsolute } Type; |
|
Definition at line 38 of file relocationinfo.h. References relNone, type, and Type.
00038 :type(_type) {}; |
|
Definition at line 39 of file relocationinfo.h. Referenced by RelocationInfos::AddRelocation().
00039 { return type; }; |
|
Definition at line 40 of file relocationinfo.h.
00040 { type = _type; }; |
|
Definition at line 42 of file relocationinfo.h. Referenced by GetType(), Relocation(), and SetType(). |