----------------------------------------------------------------------------- Get the basic type of a node -----------------------------------------------------------------------------
| 4840 | // Get the basic type of a node |
| 4841 | //----------------------------------------------------------------------------- |
| 4842 | uint8 Driver::GetNodeBasic |
| 4843 | ( |
| 4844 | uint8 const _nodeId |
| 4845 | ) |
| 4846 | { |
| 4847 | uint8 basic = 0; |
| 4848 | LockGuard LG(m_nodeMutex); |
| 4849 | if( Node* node = GetNode( _nodeId ) ) |
| 4850 | { |
| 4851 | basic = node->GetBasic(); |
| 4852 | } |
| 4853 | |
| 4854 | return basic; |
| 4855 | } |
| 4856 | |
| 4857 | //----------------------------------------------------------------------------- |
| 4858 | // <Driver::GetNodeGeneric> |