Go to the source code of this file.
◆ mDeclWFClassWithVariable
| #define mDeclWFClassWithVariable |
( |
|
clss | ) |
|
Value: clss##Window(); \
bool hasVariable() const { return true; } \
bool setVariable(float); \
bool isAcceptableVariable(float) const; \
◆ mDeclWFSimpleClass
| #define mDeclWFSimpleClass |
( |
|
nm | ) |
|
Value:
{ \
public: \
mDeclWFStdFns(nm); \
};
◆ mDeclWFStdFns
| #define mDeclWFStdFns |
( |
|
nm | ) |
|
Value:
static const char* sName() { return #nm; }\
const char* name() const { return #nm; } \
float getValue(float) const; \
float getValue( const float* x ) const { return getValue(*x); }
◆ mDefineFactory()