Browse CVS Repository
Diff of /xoonips/AL/event.cc
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 97 |
const char* event::getSearchKeyword () const { return searchKeyword ; } |
const char* event::getSearchKeyword () const { return searchKeyword ; } |
| 98 |
const char* event::getAdditionalInfo() const { return additionalInfo; } |
const char* event::getAdditionalInfo() const { return additionalInfo; } |
| 99 |
|
|
| 100 |
void event::setEventID ( eventid_t x ) { if ( ETID_INVALID_ETID < x && x <= ETID_MAX ) eventID = x; } |
void event::setEventID ( eventid_t x ) { eventID = x; } |
| 101 |
void event::setEventTypeID ( eventtypeid_t x ) { eventTypeID = x; } |
void event::setEventTypeID ( eventtypeid_t x ) { if ( ETID_INVALID_ETID < x && x <= ETID_MAX ) eventTypeID = x;} |
| 102 |
void event::setTimestamp ( time_t x ) { timestamp = x; } |
void event::setTimestamp ( time_t x ) { timestamp = x; } |
| 103 |
void event::setExecUID ( userid_t x ) { execUID = x; } |
void event::setExecUID ( userid_t x ) { execUID = x; } |
| 104 |
void event::setIndexID ( indexid_t x ) { indexID = x; } |
void event::setIndexID ( indexid_t x ) { indexID = x; } |
|
|
Legend:
| Removed from v.1.3 |
|
| changed lines |
| |
Added in v.1.4 |
|
|
|