#include <cctype>
#include <algorithm>
#include "FWCore/Reflection/interface/BaseWithDict.h"
#include "FWCore/Reflection/interface/FunctionWithDict.h"
#include <cstring>
#include "Fireworks/Core/src/FWExpressionValidator.h"
#include "CommonTools/Utils/interface/returnType.h"
Go to the source code of this file.
Classes | |
class | fireworks::OptionNode |
struct | fireworks::OptionNodePtrCompare< T > |
struct | fireworks::OptionNodePtrEqual< T > |
Namespaces | |
fireworks | |
Macros | |
#define | FUN1(_fun_) m_builtins.push_back(std::make_shared<OptionNode>(#_fun_ "(float):float", strlen(#_fun_) + 1, s_float)) |
#define | FUN2(_fun_) m_builtins.push_back(std::make_shared<OptionNode>(#_fun_ "(float,float):float", strlen(#_fun_) + 1, s_float)) |
Typedefs | |
typedef std::vector < std::shared_ptr < fireworks::OptionNode > > | Options |
#define FUN1 | ( | _fun_ | ) | m_builtins.push_back(std::make_shared<OptionNode>(#_fun_ "(float):float", strlen(#_fun_) + 1, s_float)) |
Definition at line 138 of file FWExpressionValidator.cc.
Referenced by FWExpressionValidator::FWExpressionValidator().
#define FUN2 | ( | _fun_ | ) | m_builtins.push_back(std::make_shared<OptionNode>(#_fun_ "(float,float):float", strlen(#_fun_) + 1, s_float)) |
Definition at line 141 of file FWExpressionValidator.cc.
Referenced by FWExpressionValidator::FWExpressionValidator().
typedef std::vector<std::shared_ptr<fireworks::OptionNode> > Options |
Definition at line 28 of file FWExpressionValidator.cc.