
#include "Value.h"#include "Configuration.h"#include "Report.h"Namespaces | |
| namespace | ProtoMol |
Defines | |
| #define | declareInputValue(NAME, TYPE, CONSTRAINT) |
| #define | defineInputValue(NAME, KEYWORD) |
| #define | defineInputValueWithAliases(NAME, KEYWORD, ALIASES) |
| #define | defineInputValueAndText(NAME, KEYWORD, TEXT) |
| #define | defineInputValueWithAliasesAndText(NAME, KEYWORD, ALIASES, TEXT) |
|
|
Value: |
|
|
Value: const string NAME##Identifier::keyword(KEYWORD); \ const vector<string> NAME##Identifier::aliases; \ const string NAME##Identifier::text("") |
|
|
Value: const string NAME##Identifier::keyword(KEYWORD); \ const vector<string> NAME##Identifier::aliases; \ const string NAME##Identifier::text(TEXT) |
|
|
Value: const string NAME##Identifier::keyword(KEYWORD); \ const vector<string> NAME##Identifier::aliases(static_cast<vector<string> >(Vector<string>ALIASES));\ const string NAME##Identifier::text("") |
|
|
Value: const string NAME##Identifier::keyword(KEYWORD); \ const vector<string> NAME##Identifier::aliases(static_cast<vector<string> >(Vector<string>ALIASES));\ const string NAME##Identifier::text(TEXT) |