#include <algorithm>#include <list>#include <map>#include <set>#include <sstream>#include <string>#include <vector>#include "stlrecognitioncommon.h"Go to the source code of this file.
Classes | |
| class | StlFeatureInterface |
| The StlFeatureInterface class is an abstract feature base class that is well suited to plugins, as it does not require Qt, only the C++ STL. More... | |
Defines | |
| #define | DECLARE_STL_FEATURE_KEY(KEY) |
| #define | DECLARE_STL_FEATURE_TITLE(TITLE) |
| #define | DECLARE_STL_FEATURE_DESCRIPTION(DESCRIPTION) |
| #define | DECLARE_STL_FEATURE_DESCRIPTION_METHODS |
| #define DECLARE_STL_FEATURE_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_FEATURE_DESCRIPTION_METHODS |
Value:
static const std::string& classDescription(); \ virtual const std::string& description() const { return classDescription(); }
| #define DECLARE_STL_FEATURE_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_FEATURE_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