diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2002-12-30 04:32:19 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2002-12-30 04:32:19 +0000 |
commit | 62530f3fc55d3dc1c12bcd3b88f0922c15cd82e5 (patch) | |
tree | a57fc5a54ed78f189f074724396f81330faf9a3b /externals/grill/flext/tutorial/simple3 | |
parent | 562dcc336797951b2a8707413aa44177484c9f2a (diff) |
""
svn path=/trunk/; revision=310
Diffstat (limited to 'externals/grill/flext/tutorial/simple3')
-rw-r--r-- | externals/grill/flext/tutorial/simple3/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/externals/grill/flext/tutorial/simple3/main.cpp b/externals/grill/flext/tutorial/simple3/main.cpp index b09893ab..d13ce42d 100644 --- a/externals/grill/flext/tutorial/simple3/main.cpp +++ b/externals/grill/flext/tutorial/simple3/main.cpp @@ -25,7 +25,7 @@ class simple3: FLEXT_HEADER(simple3,flext_base) public: - // constructor with variable argument list + // constructor with no arguments simple3(); protected: @@ -38,12 +38,12 @@ protected: private: - FLEXT_CALLBACK(m_tag); // callback for method "m_tag" (no arguments) - FLEXT_CALLBACK_I(m_tag_and_int); // callback for method "m_tag" (int arguments) - FLEXT_CALLBACK_S(m_sym); // callback for method "m_sym" (with one symbol argument) + FLEXT_CALLBACK(m_tag) // callback for method "m_tag" (no arguments) + FLEXT_CALLBACK_I(m_tag_and_int) // callback for method "m_tag_and_int" (int arguments) + FLEXT_CALLBACK_S(m_sym) // callback for method "m_sym" (with one symbol argument) }; -// instantiate the class (constructor has a variable argument list) +// instantiate the class (constructor takes no arguments) FLEXT_NEW("simple3",simple3) |