knowrob  2.1.0
A Knowledge Base System for Cognition-enabled Robots
AnswerDontKnow.h
Go to the documentation of this file.
1 /*
2  * This file is part of KnowRob, please consult
3  * https://github.com/knowrob/knowrob for license details.
4  */
5 
6 #ifndef KNOWROB_ANSWER_DONT_KNOW_H
7 #define KNOWROB_ANSWER_DONT_KNOW_H
8 
9 #include "Answer.h"
10 
11 namespace knowrob {
15  class AnswerDontKnow : public Answer {
16  public:
18 
20 
25 
30  };
31 
32  // alias
33  using AnswerDontKnowPtr = std::shared_ptr<const AnswerDontKnow>;
34 
38  const std::shared_ptr<const AnswerDontKnow> &GenericDontKnow();
39 
40 } // knowrob
41 
42 #endif //KNOWROB_ANSWER_DONT_KNOW_H
std::string humanReadableFormOfDontKnow() const
std::string stringFormOfDontKnow() const
AnswerDontKnow(const AnswerDontKnow &other)
TermRule & string()
Definition: terms.cpp:63
const std::shared_ptr< const AnswerDontKnow > & GenericDontKnow()
std::shared_ptr< const AnswerDontKnow > AnswerDontKnowPtr