----------------------------------------------------------------------------- Set the query stage (but only to an earlier stage) -----------------------------------------------------------------------------
| 818 | // Set the query stage (but only to an earlier stage) |
| 819 | //----------------------------------------------------------------------------- |
| 820 | void Node::SetQueryStage |
| 821 | ( |
| 822 | QueryStage const _stage, |
| 823 | bool const _advance // = true |
| 824 | ) |
| 825 | { |
| 826 | if( (int)_stage < (int)m_queryStage ) |
| 827 | { |
| 828 | m_queryStage = _stage; |
| 829 | m_queryPending = false; |
| 830 | |
| 831 | if( QueryStage_Configuration == _stage ) |
| 832 | { |
| 833 | m_queryConfiguration = true; |
| 834 | } |
| 835 | } |
| 836 | if( _advance ) |
| 837 | { |
| 838 | AdvanceQueries(); |
| 839 | } |
| 840 | } |
| 841 | |
| 842 | //----------------------------------------------------------------------------- |
| 843 | // <Node::GetQueryStageName> |
no outgoing calls
no test coverage detected