knowrob  2.1.0
A Knowledge Base System for Cognition-enabled Robots
QueryFlag.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_QUERY_FLAG_H
7 #define KNOWROB_QUERY_FLAG_H
8 
9 namespace knowrob {
13  enum QueryFlag {
15  QUERY_FLAG_ALL_SOLUTIONS = 1 << 0,
17  QUERY_FLAG_ONE_SOLUTION = 1 << 1,
22  };
23 }
24 
25 #endif //KNOWROB_QUERY_FLAG_H
@ QUERY_FLAG_ONE_SOLUTION
Definition: QueryFlag.h:17
@ QUERY_FLAG_ALL_SOLUTIONS
Definition: QueryFlag.h:15
@ QUERY_FLAG_UNIQUE_SOLUTIONS
Definition: QueryFlag.h:21
@ QUERY_FLAG_PERSIST_SOLUTIONS
Definition: QueryFlag.h:19