knowrob  2.1.0
A Knowledge Base System for Cognition-enabled Robots
PrefixProbe.h
Go to the documentation of this file.
1 //
2 // Created by daniel on 31.07.23.
3 //
4 
5 #ifndef KNOWROB_PREFIX_PROBE_H
6 #define KNOWROB_PREFIX_PROBE_H
7 
8 #include "string"
9 
10 namespace knowrob {
11  struct PrefixProbe { std::string_view prefix; };
12  bool operator<(PrefixProbe a, std::string_view b);
13  bool operator<(std::string_view a, PrefixProbe b);
14 } // knowrob
15 
16 #endif //KNOWROB_PREFIX_PROBE_H
bool operator<(PrefixProbe a, std::string_view b)
Definition: PrefixProbe.cpp:8
std::string_view prefix
Definition: PrefixProbe.h:11