Om
define_operation.hpp
Go to the documentation of this file.
1 
26 #ifndef Om_Language_Operation_DefineOperation_
27 
28  #define Om_Language_Operation_DefineOperation_ \
29  Om::Language::Operation::DefineOperation
30 
32  #include "om/language/system.hpp"
33 
34  #define Om_Language_Operation_DefineOperation_GetName_() \
35  "define"
36 
37 namespace Om {
38 
39  namespace Language {
40 
41  namespace Operation {
42 
43  // MARK: - Om::Language::Operation::DefineOperation
44 
50  public DefaultIncompleteOperation<DefineOperation> {
51 
52  public: // MARK: public (static)
53 
54  static char const * GetName();
55 
56  template <typename TheDefineOperation>
57  static void GiveElements(
58  TheDefineOperation &,
59  Consumer &
60  );
61 
62  public: // MARK: public (non-static)
63 
65 
66  template <typename TheOperand>
68  Evaluation &,
69  TheOperand &
70  );
71 
72  template <typename TheProducer>
74  Evaluation &,
75  TheProducer &
76  );
77 
78  private: // MARK: private (non-static)
79 
80  boost::optional<Lexicon> thisLexicon;
81 
82  };
83 
84  namespace {
85 
86  static System::Definition<DefineOperation> const theDefineDefinition;
87 
88  }
89 
90  }
91 
92  }
93 
94 }
95 
97 
98 #endif
An Element taker; takes at the back.
Definition: consumer.hpp:42
The current evaluation.
Definition: evaluation.hpp:42
A partial implementation of IncompleteOperation.
The define operation implementation.
bool TakeQuotedProducer(Evaluation &, TheProducer &)
bool TakeOperand(Evaluation &, TheOperand &)
static void GiveElements(TheDefineOperation &, Consumer &)
An inserter of an Operation into the static System instance.
Definition: system.hpp:129
Om source file.
The Om library.
Definition: code_point.hpp:26
Om header file.