Numworks Epsilon  1.4.1
Graphing Calculator Operating System
invocation.cpp
Go to the documentation of this file.
1 #include <escher/invocation.h>
2 
3 Invocation::Invocation(Action a, void * c) :
4  m_action(a),
5  m_context(c)
6 {
7 }
8 
9 void Invocation::perform(void * sender) {
10  (*m_action)(m_context, sender);
11 }
void perform(void *sender)
Definition: invocation.cpp:9
Invocation(Action a, void *c)
Definition: invocation.cpp:3
c(generic_all_nodes)