#include <AlterTrig.hpp>
Public Member Functions | |
| STATIC_CONST (InternalLength=3) | |
| STATIC_CONST (SignalLength=5) | |
| Uint32 | getUserRef () const |
| void | setUserRef (Uint32 val) |
| Uint32 | getConnectionPtr () const |
| void | setConnectionPtr (Uint32 val) |
| AlterTrigReq::RequestType | getRequestType () const |
| void | setRequestType (AlterTrigReq::RequestType val) |
| Uint32 | getTableId () const |
| void | setTableId (Uint32 val) |
| Uint32 | getTriggerId () const |
| void | setTriggerId (Uint32 val) |
Private Attributes | |
| Uint32 | m_userRef |
| Uint32 | m_connectionPtr |
| Uint32 | m_requestInfo |
| Uint32 | m_tableId |
| Uint32 | m_triggerId |
Friends | |
| bool | printALTER_TRIG_CONF (FILE *, const Uint32 *, Uint32, Uint16) |
Definition at line 157 of file AlterTrig.hpp.
| Uint32 AlterTrigConf::getConnectionPtr | ( | ) | const [inline] |
Definition at line 178 of file AlterTrig.hpp.
References m_connectionPtr.
Referenced by Dbdict::alterTrigger_recvReply(), and AlterTrigRef::getConnectionPtr().
00178 { 00179 return m_connectionPtr; 00180 }
Here is the caller graph for this function:

| AlterTrigReq::RequestType AlterTrigConf::getRequestType | ( | ) | const [inline] |
Definition at line 184 of file AlterTrig.hpp.
References m_requestInfo.
Referenced by Dbdict::alterTrigger_recvReply(), and AlterTrigRef::getRequestType().
00184 { 00185 return (AlterTrigReq::RequestType)m_requestInfo; 00186 }
Here is the caller graph for this function:

| Uint32 AlterTrigConf::getTableId | ( | ) | const [inline] |
Definition at line 190 of file AlterTrig.hpp.
References m_tableId.
Referenced by AlterTrigRef::getTableId().
00190 { 00191 return m_tableId; 00192 }
Here is the caller graph for this function:

| Uint32 AlterTrigConf::getTriggerId | ( | ) | const [inline] |
Definition at line 196 of file AlterTrig.hpp.
References m_triggerId.
Referenced by AlterTrigRef::getTriggerId().
00196 { 00197 return m_triggerId; 00198 }
Here is the caller graph for this function:

| Uint32 AlterTrigConf::getUserRef | ( | ) | const [inline] |
Definition at line 172 of file AlterTrig.hpp.
References m_userRef.
Referenced by AlterTrigRef::getUserRef().
00172 { 00173 return m_userRef; 00174 }
Here is the caller graph for this function:

| void AlterTrigConf::setConnectionPtr | ( | Uint32 | val | ) | [inline] |
Definition at line 181 of file AlterTrig.hpp.
References m_connectionPtr.
Referenced by AlterTrigRef::setConnectionPtr().
00181 { 00182 m_connectionPtr = val; 00183 }
Here is the caller graph for this function:

| void AlterTrigConf::setRequestType | ( | AlterTrigReq::RequestType | val | ) | [inline] |
Definition at line 187 of file AlterTrig.hpp.
References m_requestInfo.
Referenced by AlterTrigRef::setRequestType().
00187 { 00188 m_requestInfo = (Uint32)val; 00189 }
Here is the caller graph for this function:

| void AlterTrigConf::setTableId | ( | Uint32 | val | ) | [inline] |
Definition at line 193 of file AlterTrig.hpp.
References m_tableId.
Referenced by AlterTrigRef::setTableId().
00193 { 00194 m_tableId = val; 00195 }
Here is the caller graph for this function:

| void AlterTrigConf::setTriggerId | ( | Uint32 | val | ) | [inline] |
Definition at line 199 of file AlterTrig.hpp.
References m_triggerId.
Referenced by AlterTrigRef::setTriggerId().
00199 { 00200 m_triggerId = val; 00201 }
Here is the caller graph for this function:

| void AlterTrigConf::setUserRef | ( | Uint32 | val | ) | [inline] |
Definition at line 175 of file AlterTrig.hpp.
References m_userRef.
Referenced by AlterTrigRef::setUserRef().
00175 { 00176 m_userRef = val; 00177 }
Here is the caller graph for this function:

| AlterTrigConf::STATIC_CONST | ( | SignalLength | = 5 |
) |
| AlterTrigConf::STATIC_CONST | ( | InternalLength | = 3 |
) |
| bool printALTER_TRIG_CONF | ( | FILE * | output, | |
| const Uint32 * | theData, | |||
| Uint32 | len, | |||
| Uint16 | receiverBlockNo | |||
| ) | [friend] |
Definition at line 30 of file AlterTrig.cpp.
00031 { 00032 const AlterTrigConf * const sig = (AlterTrigConf *) theData; 00033 00034 fprintf(output, "User: %u, ", sig->getUserRef()); 00035 fprintf(output, "Trigger id: %u, ", sig->getTriggerId()); 00036 fprintf(output, "\n"); 00037 00038 return false; 00039 }
Uint32 AlterTrigConf::m_connectionPtr [private] |
Definition at line 166 of file AlterTrig.hpp.
Referenced by getConnectionPtr(), and setConnectionPtr().
Uint32 AlterTrigConf::m_requestInfo [private] |
Uint32 AlterTrigConf::m_tableId [private] |
Uint32 AlterTrigConf::m_triggerId [private] |
Uint32 AlterTrigConf::m_userRef [private] |
1.4.7

