#include <algorithm>#include <list>#include <map>#include <set>#include <string>#include "stlrecognitioncommon.h"Go to the source code of this file.
Classes | |
| class | StlRecogniserInterface |
| The StlRecogniserInterface class is an abstract recogniser base class that is well suited to plugins, as it does not require Qt, only the C++ STL. More... | |
Defines | |
| #define | DECLARE_STL_RECOGNISER_KEY(KEY) |
| #define | DECLARE_STL_RECOGNISER_TITLE(TITLE) |
| #define | DECLARE_STL_RECOGNISER_DESCRIPTION(DESCRIPTION) |
| #define DECLARE_STL_RECOGNISER_DESCRIPTION | ( | DESCRIPTION | ) |
Value:
static const std::string& classDescription() { \ static const std::string str(DESCRIPTION); \ return str; \ } \ virtual const std::string& description() const { return classDescription(); }
| #define DECLARE_STL_RECOGNISER_KEY | ( | KEY | ) |
Value:
static const std::string& classKey() { \ static const std::string str(KEY); \ return str; \ } \ virtual const std::string& key() const { return classKey(); }
| #define DECLARE_STL_RECOGNISER_TITLE | ( | TITLE | ) |
Value:
static const std::string& classTitle() { \ static const std::string str(TITLE); \ return str; \ } \ virtual const std::string& title() const { return classTitle(); }
1.5.2