diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
commit | 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 (patch) | |
tree | 5c67818b38a5cc2f9caa5ca7f8640ca356adf02b /externals/grill/vasp/source/obj_radio.cpp | |
parent | bb4c7f6a245394d09dac9adfb2efb093d3d98452 (diff) |
cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/
svn path=/trunk/; revision=10951
Diffstat (limited to 'externals/grill/vasp/source/obj_radio.cpp')
-rw-r--r-- | externals/grill/vasp/source/obj_radio.cpp | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/externals/grill/vasp/source/obj_radio.cpp b/externals/grill/vasp/source/obj_radio.cpp deleted file mode 100644 index 8932e801..00000000 --- a/externals/grill/vasp/source/obj_radio.cpp +++ /dev/null @@ -1,59 +0,0 @@ -/* - -VASP modular - vector assembling signal processor / objects for Max/MSP and PD - -Copyright (c) 2002 Thomas Grill (xovo@gmx.net) -For information on usage and redistribution, and for a DISCLAIMER OF ALL -WARRANTIES, see the file, "license.txt," in this distribution. - -*/ - -/*! \file obj_radio.cpp - \brief objects for radio messages. -*/ - -#include "main.h" -#include "classes.h" - - -/*! \class vasp_radio - \remark \b vasp.radio - \brief Lets only radio messages pass through. - \since 0.0.6 - \param inlet.1 * - any message - \retval outlet.1 radio messages - \retval outlet.2 other messages -*/ -class vasp_radio: - public flext_base -{ - FLEXT_HEADER_S(vasp_radio,flext_base,Setup) - -public: - - vasp_radio() - { - AddInAnything(); - AddOutAnything(2); - } - - static V Setup(t_classid c) - { - FLEXT_CADDMETHOD(c,0,m_any); - } - - virtual V m_any(const t_symbol *s,I argc,const t_atom *argv); - - virtual V m_help() { post("%s - split into radio and non-radio messages",thisName()); } -private: - FLEXT_CALLBACK_A(m_any); -}; - -VASP_LIB("vasp.radio",vasp_radio) - - -V vasp_radio::m_any(const t_symbol *s,I argc,const t_atom *argv) -{ - ToOutAnything(s == vasp_base::sym_radio?0:1,s,argc,argv); -} - |