Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18074
Modified Files: Tag: desiredata m_pd.h Log Message: declaration for atom_ostream
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.4.4.11.2.33.2.51 retrieving revision 1.4.4.11.2.33.2.52 diff -C2 -d -r1.4.4.11.2.33.2.51 -r1.4.4.11.2.33.2.52 *** m_pd.h 17 Jul 2007 23:54:55 -0000 1.4.4.11.2.33.2.51 --- m_pd.h 18 Jul 2007 08:28:13 -0000 1.4.4.11.2.33.2.52 *************** *** 11,14 **** --- 11,15 ----
#if defined(_LANGUAGE_C_PLUS_PLUS) || defined(__cplusplus) + #include <iostream> extern "C" { #endif *************** *** 341,344 **** --- 342,348 ---- /* this function should produce a literal, whereas getstring gives the exact string */ EXTERN void atom_string(t_atom *a, char *buf, unsigned int bufsize); + #ifdef __cplusplus + EXTERN void atom_ostream(t_atom *a, std::ostream &buf); + #endif
/* goes with desiredata's CLASS_NEWATOM */