1: 
   2: 
   3: /*******************
   4: *                  *
   5: *  METHODS GETXXX  *
   6: *                  *
   7: *******************/
   8: 
   9: 
  10: inline Opcode Request::GetOpcode() const { return m_op; }
  11: inline QuestionConstPtr Request::GetQuestion() const { return m_qnp; }
  12: inline unsigned short Request::GetQuestionCount() const { return (m_qnp==NULL)?0:1; }
  13: inline bool Request::GetRD() const { return m_bRD; }
  14: 
  15: 
  16: