summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/camsync.ttl16
-rw-r--r--src/configfile.cc10
-rw-r--r--src/configfile.h14
-rw-r--r--src/configparser.cc8
-rw-r--r--src/configparser.h14
-rw-r--r--src/configuration.cc8
-rw-r--r--src/configuration.h14
-rw-r--r--src/input_lv2.cc8
-rw-r--r--src/input_lv2.h14
-rw-r--r--src/lv2.cc22
-rw-r--r--src/lv2_gui.cc18
-rw-r--r--src/lv2_gui.h22
-rw-r--r--src/lv2_instance.h18
-rw-r--r--src/manifest.ttl6
-rw-r--r--src/message.h14
-rw-r--r--src/messagehandler.cc8
-rw-r--r--src/messagehandler.h14
-rw-r--r--src/messagereceiver.cc8
-rw-r--r--src/messagereceiver.h14
-rw-r--r--src/midimapparser.cc8
-rw-r--r--src/midimapparser.h14
-rw-r--r--src/midimapper.cc8
-rw-r--r--src/midimapper.h14
-rw-r--r--src/nolocale.h14
-rw-r--r--src/output_lv2.cc8
-rw-r--r--src/output_lv2.h14
-rw-r--r--src/path.cc8
-rw-r--r--src/path.h14
-rw-r--r--src/saxparser.cc8
-rw-r--r--src/saxparser.h14
-rw-r--r--src/thread.cc8
-rw-r--r--src/thread.h8
-rw-r--r--src/versionstr.cc8
-rw-r--r--src/versionstr.h8
34 files changed, 203 insertions, 203 deletions
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 <deva@aasimon.org>
#
# Permission to use, copy, modify, and/or distribute this software for any
@@ -20,19 +20,19 @@
@prefix uiext: <http://lv2plug.in/ns/extensions/ui#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
-<http://drumgizmo.org/lv2-gui>
+<http://camsync.org/lv2-gui>
a uiext:external ;
- uiext:binary <drumgizmo.so> .
+ uiext:binary <camsync.so> .
-<http://drumgizmo.org/lv2>
+<http://camsync.org/lv2>
a lv2:InstrumentPlugin ;
- doap:name "DrumGizmo" ;
+ doap:name "CamSync" ;
doap:maintainer [
- foaf:name "DrumGizmo.org";
- foaf:homepage <http://www.drumgizmo.org> ;
+ foaf:name "CamSync.org";
+ foaf:homepage <http://www.camsync.org> ;
] ;
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
- uiext:ui <http://drumgizmo.org/lv2-gui> ;
+ uiext:ui <http://camsync.org/lv2-gui> ;
doap:license <http://opensource.org/licenses/gpl-3.0> ;
lv2:optionalFeature <http://lv2plug.in/ns/ext/uri-map> ;
lv2:optionalFeature <http://lv2plug.in/ns/ext/event> ;
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 <string>
#include <map>
@@ -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 <map>
@@ -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 <audioinputenginemidi.h>
@@ -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 <lv2/lv2plug.in/ns/lv2core/lv2.h>
@@ -35,13 +35,13 @@
#include <hugin.hpp>
-#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 <plugingui.h>
@@ -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 <lv2/lv2plug.in/ns/lv2core/lv2.h>
#include <lv2/lv2plug.in/ns/ext/data-access/data-access.h>
-#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 <lv2/lv2plug.in/ns/lv2core/lv2.h>
#include <lv2/lv2plug.in/ns/ext/state/state.h>
@@ -34,15 +34,15 @@
#include "input_lv2.h"
#include "output_lv2.h"
-#include <drumgizmo.h>
+#include <camsync.h>
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: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-<http://drumgizmo.org/lv2>
+<http://camsync.org/lv2>
a lv2:Plugin ;
- lv2:binary <drumgizmo.so> ;
- rdfs:seeAlso <drumgizmo.ttl> .
+ lv2:binary <camsync.so> ;
+ rdfs:seeAlso <camsync.ttl> .
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 <string>
@@ -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 <map>
@@ -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 <list>
@@ -72,4 +72,4 @@ private:
std::list<Message *> 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 <stdio.h>
@@ -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 <map>
#include <string>
@@ -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 <locale.h>
#include <stdarg.h>
@@ -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 <audiooutputengine.h>
@@ -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 <string>
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 <string>
#include <map>
@@ -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__