Update of /cvsroot/pure-data/externals/grill/flext/tutorial/adv2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3262/tutorial/adv2
Modified Files:
main.cpp
Log Message:
small fixes for tutorial examples
fixed help methods
fixed typos, dates, contact info
added typed flext::NewAligned
Index: main.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/tutorial/adv2/main.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** main.cpp 3 Jan 2003 04:31:56 -0000 1.3
--- main.cpp 22 Sep 2006 09:20:21 -0000 1.4
***************
*** 2,6 ****
flext tutorial - advanced 2
! Copyright (c) 2002,2003 Thomas Grill (xovo(a)gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
--- 2,6 ----
flext tutorial - advanced 2
! Copyright (c) 2002-2006 Thomas Grill (gr(a)grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
***************
*** 23,28 ****
// check for appropriate flext version
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 401)
! #error You need at least flext version 0.4.1
#endif
--- 23,28 ----
// check for appropriate flext version
! #if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 500)
! #error You need at least flext version 0.5.0
#endif
***************
*** 41,45 ****
void m_sym(t_symbol *s);
! virtual void m_help();
private:
--- 41,45 ----
void m_sym(t_symbol *s);
! void m_help();
private:
***************
*** 50,53 ****
--- 50,54 ----
FLEXT_CALLBACK_I(m_tag_and_int)
FLEXT_CALLBACK_S(m_sym)
+ FLEXT_CALLBACK(m_help)
};
***************
*** 73,76 ****
--- 74,79 ----
FLEXT_CADDMETHOD(c,0,m_sym);
+
+ FLEXT_CADDMETHOD_(c,0,"help",m_help);
}