Om
dequote_operation.hpp
Go to the documentation of this file.
1 
26 #ifndef Om_Language_Operation_DequoteOperation_
27 
28  #define Om_Language_Operation_DequoteOperation_ \
29  Om::Language::Operation::DequoteOperation
30 
32  #include "om/language/system.hpp"
33 
34  #define Om_Language_Operation_DequoteOperation_GetName_() \
35  "dequote"
36 
37 namespace Om {
38 
39  namespace Language {
40 
41  namespace Operation {
42 
43  // MARK: - Om::Language::Operation::DequoteOperation
44 
50  public DefaultIncompleteOperation<DequoteOperation> {
51 
52  public: // MARK: public (static)
53 
54  static char const * GetName();
55 
56  template <typename TheDequoteOperation>
57  static void GiveElements(
58  TheDequoteOperation &,
59  Consumer &
60  );
61 
62  public: // MARK: public (non-static)
63 
64  template <typename TheOperand>
66  Evaluation &,
67  TheOperand &
68  );
69 
70  template <typename TheProducer>
72  Evaluation &,
73  TheProducer &
74  );
75 
76  };
77 
78  namespace {
79 
80  static System::Definition<DequoteOperation> const theDequoteDefinition;
81 
82  }
83 
84  }
85 
86  }
87 
88 }
89 
91 
92 #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 dequote operation implementation.
bool TakeOperand(Evaluation &, TheOperand &)
static void GiveElements(TheDequoteOperation &, Consumer &)
bool TakeQuotedProducer(Evaluation &, TheProducer &)
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.