# File lib/Dnsruby/message.rb, line 147
    def add_question(question, type=Types.A, klass=Classes.IN)
      if (!question.kind_of?Question) 
        question = Question.new(question, type, klass)
      end
      @question << question
      @header.qdcount = @question.length
    end