From 1098b2a1a441cc2edd8f16b6c94763942465eda3 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 20 Sep 2015 12:19:37 +0200 Subject: Replace drumgizmo with camsync. --- src/camsync.ttl | 16 ++++++++-------- src/configfile.cc | 10 +++++----- src/configfile.h | 14 +++++++------- src/configparser.cc | 8 ++++---- src/configparser.h | 14 +++++++------- src/configuration.cc | 8 ++++---- src/configuration.h | 14 +++++++------- src/input_lv2.cc | 8 ++++---- src/input_lv2.h | 14 +++++++------- src/lv2.cc | 22 +++++++++++----------- src/lv2_gui.cc | 18 +++++++++--------- src/lv2_gui.h | 22 +++++++++++----------- src/lv2_instance.h | 18 +++++++++--------- src/manifest.ttl | 6 +++--- src/message.h | 14 +++++++------- src/messagehandler.cc | 8 ++++---- src/messagehandler.h | 14 +++++++------- src/messagereceiver.cc | 8 ++++---- src/messagereceiver.h | 14 +++++++------- src/midimapparser.cc | 8 ++++---- src/midimapparser.h | 14 +++++++------- src/midimapper.cc | 8 ++++---- src/midimapper.h | 14 +++++++------- src/nolocale.h | 14 +++++++------- src/output_lv2.cc | 8 ++++---- src/output_lv2.h | 14 +++++++------- src/path.cc | 8 ++++---- src/path.h | 14 +++++++------- src/saxparser.cc | 8 ++++---- src/saxparser.h | 14 +++++++------- src/thread.cc | 8 ++++---- src/thread.h | 8 ++++---- src/versionstr.cc | 8 ++++---- src/versionstr.h | 8 ++++---- 34 files changed, 203 insertions(+), 203 deletions(-) (limited to 'src') diff --git a/src/camsync.ttl b/src/camsync.ttl index 23345f3..695cc66 100644 --- a/src/camsync.ttl +++ b/src/camsync.ttl @@ -1,4 +1,4 @@ -# LV2 DrumGizmo Plugin +# LV2 CamSync Plugin # Copyright 2011 Bent Bisballe Nyeng # # Permission to use, copy, modify, and/or distribute this software for any @@ -20,19 +20,19 @@ @prefix uiext: . @prefix state: . - + a uiext:external ; - uiext:binary . + uiext:binary . - + a lv2:InstrumentPlugin ; - doap:name "DrumGizmo" ; + doap:name "CamSync" ; doap:maintainer [ - foaf:name "DrumGizmo.org"; - foaf:homepage ; + foaf:name "CamSync.org"; + foaf:homepage ; ] ; doap:license ; - uiext:ui ; + uiext:ui ; doap:license ; lv2:optionalFeature ; lv2:optionalFeature ; diff --git a/src/configfile.cc b/src/configfile.cc index 6b0d14f..aabc3a5 100644 --- a/src/configfile.cc +++ b/src/configfile.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "configfile.h" @@ -50,7 +50,7 @@ #define SEP "/" #endif -#define CONFIGDIRNAME ".drumgizmo" +#define CONFIGDIRNAME ".camsync" /** * Return the path containing the config files. diff --git a/src/configfile.h b/src/configfile.h index a6c50bd..6bcd275 100644 --- a/src/configfile.h +++ b/src/configfile.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_CONFIGFILE_H__ -#define __DRUMGIZMO_CONFIGFILE_H__ +#ifndef __CAMSYNC_CONFIGFILE_H__ +#define __CAMSYNC_CONFIGFILE_H__ #include #include @@ -54,4 +54,4 @@ protected: FILE* fp; }; -#endif/*__DRUMGIZMO_CONFIGFILE_H__*/ +#endif/*__CAMSYNC_CONFIGFILE_H__*/ diff --git a/src/configparser.cc b/src/configparser.cc index 96e701b..d88ee95 100644 --- a/src/configparser.cc +++ b/src/configparser.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "configparser.h" diff --git a/src/configparser.h b/src/configparser.h index e67babd..17976ae 100644 --- a/src/configparser.h +++ b/src/configparser.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_CONFIGPARSER_H__ -#define __DRUMGIZMO_CONFIGPARSER_H__ +#ifndef __CAMSYNC_CONFIGPARSER_H__ +#define __CAMSYNC_CONFIGPARSER_H__ #include @@ -46,4 +46,4 @@ private: std::string *str; }; -#endif/*__DRUMGIZMO_CONFIGPARSER_H__*/ +#endif/*__CAMSYNC_CONFIGPARSER_H__*/ diff --git a/src/configuration.cc b/src/configuration.cc index 5c733ee..052183a 100644 --- a/src/configuration.cc +++ b/src/configuration.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "configuration.h" diff --git a/src/configuration.h b/src/configuration.h index b8be49f..91951ed 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_CONFIGURATION_H__ -#define __DRUMGIZMO_CONFIGURATION_H__ +#ifndef __CAMSYNC_CONFIGURATION_H__ +#define __CAMSYNC_CONFIGURATION_H__ namespace Conf { extern bool enable_velocity_modifier; @@ -41,4 +41,4 @@ namespace Conf { }; -#endif/*__DRUMGIZMO_CONFIGURATION_H__*/ +#endif/*__CAMSYNC_CONFIGURATION_H__*/ diff --git a/src/input_lv2.cc b/src/input_lv2.cc index e70d293..fcd5294 100644 --- a/src/input_lv2.cc +++ b/src/input_lv2.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "input_lv2.h" diff --git a/src/input_lv2.h b/src/input_lv2.h index 32e2fd8..e58905c 100644 --- a/src/input_lv2.h +++ b/src/input_lv2.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_INPUT_LV2_H__ -#define __DRUMGIZMO_INPUT_LV2_H__ +#ifndef __CAMSYNC_INPUT_LV2_H__ +#define __CAMSYNC_INPUT_LV2_H__ #include @@ -53,4 +53,4 @@ private: Instruments *instruments; }; -#endif/*__DRUMGIZMO_INPUT_LV2_H__*/ +#endif/*__CAMSYNC_INPUT_LV2_H__*/ diff --git a/src/lv2.cc b/src/lv2.cc index d87665d..673c650 100644 --- a/src/lv2.cc +++ b/src/lv2.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include @@ -35,13 +35,13 @@ #include -#define DRUMGIZMO_URI "http://drumgizmo.org/lv2" -#define NS_DG DRUMGIZMO_URI "/atom#" +#define CAMSYNC_URI "http://camsync.org/lv2" +#define NS_DG CAMSYNC_URI "/atom#" -// Stuff to handle DrumGizmo* transmission from instance to GUI. -static LV2_DrumGizmo_Descriptor dg_descriptor; +// Stuff to handle CamSync* transmission from instance to GUI. +static LV2_CamSync_Descriptor dg_descriptor; -static DrumGizmo *dg_get_pci(LV2_Handle instance) +static CamSync *dg_get_pci(LV2_Handle instance) { DGLV2 *dglv2 = (DGLV2 *)instance; return dglv2->dg; @@ -142,7 +142,7 @@ LV2_Handle instantiate(const struct _LV2_Descriptor *descriptor, dglv2->buffer = NULL; dglv2->buffer_size = 0; - dglv2->dg = new DrumGizmo(dglv2->out, dglv2->in); + dglv2->dg = new CamSync(dglv2->out, dglv2->in); dglv2->dg->setSamplerate(sample_rate); return (LV2_Handle)dglv2; @@ -209,7 +209,7 @@ extern "C" { #endif static const LV2_Descriptor descriptor = { - DRUMGIZMO_URI, + CAMSYNC_URI, instantiate, connect_port, activate, diff --git a/src/lv2_gui.cc b/src/lv2_gui.cc index 858e097..b474534 100644 --- a/src/lv2_gui.cc +++ b/src/lv2_gui.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "lv2_gui.h" @@ -37,7 +37,7 @@ // From: http://codesearch.google.com/#50sg5qT6WNE/src/lv2_ui_dssi.c // git://repo.or.cz/nekobee.git/src/lv2_ui_dssi.c -#define DRUMGIZMO_UI_URI "http://drumgizmo.org/lv2-gui" +#define CAMSYNC_UI_URI "http://camsync.org/lv2-gui" #include @@ -111,7 +111,7 @@ struct DG_GUI { LV2_Handle instance_handle; LV2_Extension_Data_Feature *data_access; - DrumGizmo *instance; + CamSync *instance; LV2UI_Controller controller; GUI::PluginGUI *gui; @@ -183,8 +183,8 @@ static LV2UI_Handle ui_instantiate(const struct _LV2UI_Descriptor * descriptor, features++; } - LV2_DrumGizmo_Descriptor *dgd = - (LV2_DrumGizmo_Descriptor *)(*pt->data_access->data_access)(PLUGIN_INSTANCE_URI); + LV2_CamSync_Descriptor *dgd = + (LV2_CamSync_Descriptor *)(*pt->data_access->data_access)(PLUGIN_INSTANCE_URI); pt->instance = dgd->get_pci(pt->instance_handle); pt->virt.run = ui_run; @@ -219,7 +219,7 @@ extern "C" { #endif static LV2UI_Descriptor descriptor = { - DRUMGIZMO_UI_URI, + CAMSYNC_UI_URI, ui_instantiate, ui_cleanup, ui_port_event, diff --git a/src/lv2_gui.h b/src/lv2_gui.h index 2857445..8ff7bd6 100644 --- a/src/lv2_gui.h +++ b/src/lv2_gui.h @@ -8,33 +8,33 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_LV2_GUI_H__ -#define __DRUMGIZMO_LV2_GUI_H__ +#ifndef __CAMSYNC_LV2_GUI_H__ +#define __CAMSYNC_LV2_GUI_H__ #include #include -#define PLUGIN_INSTANCE_URI "http://drumgizmo.org/ns/drumgizmo-plugin-instance" +#define PLUGIN_INSTANCE_URI "http://camsync.org/ns/camsync-plugin-instance" -class DrumGizmo; -struct LV2_DrumGizmo_Descriptor { - DrumGizmo *(*get_pci)(LV2_Handle instance); +class CamSync; +struct LV2_CamSync_Descriptor { + CamSync *(*get_pci)(LV2_Handle instance); }; -#endif/*__DRUMGIZMO_LV2_GUI_H__*/ +#endif/*__CAMSYNC_LV2_GUI_H__*/ diff --git a/src/lv2_instance.h b/src/lv2_instance.h index a16e549..2f6ec54 100644 --- a/src/lv2_instance.h +++ b/src/lv2_instance.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_LV2_INSTANCE_H__ -#define __DRUMGIZMO_LV2_INSTANCE_H__ +#ifndef __CAMSYNC_LV2_INSTANCE_H__ +#define __CAMSYNC_LV2_INSTANCE_H__ #include #include @@ -34,15 +34,15 @@ #include "input_lv2.h" #include "output_lv2.h" -#include +#include typedef struct { InputLV2 *in; OutputLV2 *out; - DrumGizmo *dg; + CamSync *dg; sample_t *buffer; size_t buffer_size; LV2_URID_Map* map; } DGLV2; -#endif/*__DRUMGIZMO_LV2_INSTANCE_H__*/ +#endif/*__CAMSYNC_LV2_INSTANCE_H__*/ diff --git a/src/manifest.ttl b/src/manifest.ttl index 65a8953..0fd8826 100644 --- a/src/manifest.ttl +++ b/src/manifest.ttl @@ -1,7 +1,7 @@ @prefix lv2: . @prefix rdfs: . - + a lv2:Plugin ; - lv2:binary ; - rdfs:seeAlso . + lv2:binary ; + rdfs:seeAlso . diff --git a/src/message.h b/src/message.h index 07b0300..c93fe18 100644 --- a/src/message.h +++ b/src/message.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_MESSAGE_H__ -#define __DRUMGIZMO_MESSAGE_H__ +#ifndef __CAMSYNC_MESSAGE_H__ +#define __CAMSYNC_MESSAGE_H__ #include @@ -118,4 +118,4 @@ public: float value; }; -#endif/*__DRUMGIZMO_MESSAGE_H__*/ +#endif/*__CAMSYNC_MESSAGE_H__*/ diff --git a/src/messagehandler.cc b/src/messagehandler.cc index 52a89a5..0affa60 100644 --- a/src/messagehandler.cc +++ b/src/messagehandler.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "messagehandler.h" diff --git a/src/messagehandler.h b/src/messagehandler.h index 9812777..f78fa8b 100644 --- a/src/messagehandler.h +++ b/src/messagehandler.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_MESSAGEHANDLER_H__ -#define __DRUMGIZMO_MESSAGEHANDLER_H__ +#ifndef __CAMSYNC_MESSAGEHANDLER_H__ +#define __CAMSYNC_MESSAGEHANDLER_H__ #include @@ -63,4 +63,4 @@ private: // Global MessageHandler; extern MessageHandler msghandler; -#endif/*__DRUMGIZMO_MESSAGEHANDLER_H__*/ +#endif/*__CAMSYNC_MESSAGEHANDLER_H__*/ diff --git a/src/messagereceiver.cc b/src/messagereceiver.cc index a24482b..d9e7b9f 100644 --- a/src/messagereceiver.cc +++ b/src/messagereceiver.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "messagereceiver.h" diff --git a/src/messagereceiver.h b/src/messagereceiver.h index 2794091..ca3181f 100644 --- a/src/messagereceiver.h +++ b/src/messagereceiver.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_MESSAGERECEIVER_H__ -#define __DRUMGIZMO_MESSAGERECEIVER_H__ +#ifndef __CAMSYNC_MESSAGERECEIVER_H__ +#define __CAMSYNC_MESSAGERECEIVER_H__ #include @@ -72,4 +72,4 @@ private: std::list message_queue; }; -#endif/*__DRUMGIZMO_MESSAGERECEIVER_H__*/ +#endif/*__CAMSYNC_MESSAGERECEIVER_H__*/ diff --git a/src/midimapparser.cc b/src/midimapparser.cc index 9d30a05..24fa2ce 100644 --- a/src/midimapparser.cc +++ b/src/midimapparser.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "midimapparser.h" diff --git a/src/midimapparser.h b/src/midimapparser.h index 98ab886..ceec85f 100644 --- a/src/midimapparser.h +++ b/src/midimapparser.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_MIDIMAPPARSER_H__ -#define __DRUMGIZMO_MIDIMAPPARSER_H__ +#ifndef __CAMSYNC_MIDIMAPPARSER_H__ +#define __CAMSYNC_MIDIMAPPARSER_H__ #include @@ -49,4 +49,4 @@ private: FILE *fd; }; -#endif/*__DRUMGIZMO_MIDIMAPPARSER_H__*/ +#endif/*__CAMSYNC_MIDIMAPPARSER_H__*/ diff --git a/src/midimapper.cc b/src/midimapper.cc index d4ff94e..39ae01b 100644 --- a/src/midimapper.cc +++ b/src/midimapper.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "midimapper.h" diff --git a/src/midimapper.h b/src/midimapper.h index 7439c4b..87dbdc7 100644 --- a/src/midimapper.h +++ b/src/midimapper.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_MIDIMAPPER_H__ -#define __DRUMGIZMO_MIDIMAPPER_H__ +#ifndef __CAMSYNC_MIDIMAPPER_H__ +#define __CAMSYNC_MIDIMAPPER_H__ #include #include @@ -43,4 +43,4 @@ public: midimap_t midimap; }; -#endif/*__DRUMGIZMO_MIDIMAPPER_H__*/ +#endif/*__CAMSYNC_MIDIMAPPER_H__*/ diff --git a/src/nolocale.h b/src/nolocale.h index 816dd9c..dbd1e59 100644 --- a/src/nolocale.h +++ b/src/nolocale.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_NOLOCALE_H__ -#define __DRUMGIZMO_NOLOCALE_H__ +#ifndef __CAMSYNC_NOLOCALE_H__ +#define __CAMSYNC_NOLOCALE_H__ #include #include @@ -75,4 +75,4 @@ static inline int snprintf_nol(char *str, size_t size, const char *format, ...) return ret; } -#endif/*__DRUMGIZMO_NOLOCALE_H__*/ +#endif/*__CAMSYNC_NOLOCALE_H__*/ diff --git a/src/output_lv2.cc b/src/output_lv2.cc index 09999cb..9e13937 100644 --- a/src/output_lv2.cc +++ b/src/output_lv2.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "output_lv2.h" diff --git a/src/output_lv2.h b/src/output_lv2.h index a3a2555..dd5eaf1 100644 --- a/src/output_lv2.h +++ b/src/output_lv2.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_OUTPUT_LV2_H__ -#define __DRUMGIZMO_OUTPUT_LV2_H__ +#ifndef __CAMSYNC_OUTPUT_LV2_H__ +#define __CAMSYNC_OUTPUT_LV2_H__ #include @@ -58,4 +58,4 @@ public: OutputPort outputPorts[NUM_OUTPUTS]; }; -#endif/*__DRUMGIZMO_OUTPUT_LV2_H__*/ +#endif/*__CAMSYNC_OUTPUT_LV2_H__*/ diff --git a/src/path.cc b/src/path.cc index 1b4ede3..da38986 100644 --- a/src/path.cc +++ b/src/path.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "path.h" diff --git a/src/path.h b/src/path.h index bdad0a5..85a342a 100644 --- a/src/path.h +++ b/src/path.h @@ -8,27 +8,27 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_PATH_H__ -#define __DRUMGIZMO_PATH_H__ +#ifndef __CAMSYNC_PATH_H__ +#define __CAMSYNC_PATH_H__ #include std::string getPath(std::string file); -#endif/*__DRUMGIZMO_PATH_H__*/ +#endif/*__CAMSYNC_PATH_H__*/ diff --git a/src/saxparser.cc b/src/saxparser.cc index 1bd98a8..f3dd9d2 100644 --- a/src/saxparser.cc +++ b/src/saxparser.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "saxparser.h" diff --git a/src/saxparser.h b/src/saxparser.h index aff90d7..69f4264 100644 --- a/src/saxparser.h +++ b/src/saxparser.h @@ -8,24 +8,24 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_SAXPARSER_H__ -#define __DRUMGIZMO_SAXPARSER_H__ +#ifndef __CAMSYNC_SAXPARSER_H__ +#define __CAMSYNC_SAXPARSER_H__ #include #include @@ -54,4 +54,4 @@ private: XML_Parser p; }; -#endif/*__DRUMGIZMO_SAXPARSER_H__*/ +#endif/*__CAMSYNC_SAXPARSER_H__*/ diff --git a/src/thread.cc b/src/thread.cc index 6e216e9..3a19f67 100644 --- a/src/thread.cc +++ b/src/thread.cc @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "thread.h" diff --git a/src/thread.h b/src/thread.h index f2c1dd0..16dc268 100644 --- a/src/thread.h +++ b/src/thread.h @@ -8,20 +8,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #pragma once diff --git a/src/versionstr.cc b/src/versionstr.cc index 90557f6..c378363 100644 --- a/src/versionstr.cc +++ b/src/versionstr.cc @@ -9,20 +9,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "versionstr.h" diff --git a/src/versionstr.h b/src/versionstr.h index ecb1df3..f3d63fe 100644 --- a/src/versionstr.h +++ b/src/versionstr.h @@ -9,20 +9,20 @@ ****************************************************************************/ /* - * This file is part of DrumGizmo. + * This file is part of CamSync. * - * DrumGizmo is free software; you can redistribute it and/or modify + * CamSync is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * DrumGizmo is distributed in the hope that it will be useful, + * CamSync is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with DrumGizmo; if not, write to the Free Software + * along with CamSync; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #ifndef __PRACRO_VERSIONSTR_H__ -- cgit v1.2.3