summaryrefslogtreecommitdiffstats
path: root/src/libs/engine
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-13 19:08:31 +0000
committerDavid Robillard <d@drobilla.net>2008-08-13 19:08:31 +0000
commite63401fe65114196ee38d9ce6952389bbcfa4d62 (patch)
tree48ee970e80cfca3219d5476bd3c29aaf576d1a34 /src/libs/engine
parentd8ca49b80ed7fbfe662fbbd178fc8b0342676847 (diff)
downloadingen-e63401fe65114196ee38d9ce6952389bbcfa4d62.tar.gz
ingen-e63401fe65114196ee38d9ce6952389bbcfa4d62.tar.bz2
ingen-e63401fe65114196ee38d9ce6952389bbcfa4d62.zip
More code removal/cleanup.
git-svn-id: http://svn.drobilla.net/lad/ingen@1351 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine')
-rw-r--r--src/libs/engine/PatchPlugin.hpp19
-rw-r--r--src/libs/engine/events/RequestPluginEvent.hpp2
2 files changed, 4 insertions, 17 deletions
diff --git a/src/libs/engine/PatchPlugin.hpp b/src/libs/engine/PatchPlugin.hpp
index 3c2272eb..24a2679a 100644
--- a/src/libs/engine/PatchPlugin.hpp
+++ b/src/libs/engine/PatchPlugin.hpp
@@ -15,23 +15,12 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef INTERNALPLUGIN_H
-#define INTERNALPLUGIN_H
+#ifndef PATCHPLUGIN_H
+#define PATCHPLUGIN_H
#include CONFIG_H_PATH
-#ifndef HAVE_SLV2
-#error "This file requires SLV2, but HAVE_SLV2 is not defined. Please report."
-#endif
-
-#include <cstdlib>
-#include <glibmm/module.h>
-#include <boost/utility.hpp>
-#include <dlfcn.h>
#include <string>
-#include <iostream>
-#include <slv2/slv2.h>
-#include "types.hpp"
#include "PluginImpl.hpp"
namespace Ingen {
@@ -52,8 +41,6 @@ public:
: PluginImpl(Plugin::Patch, uri)
{}
- //PatchPlugin(const PatchPlugin* const copy);
-
NodeImpl* instantiate(const std::string& name,
bool polyphonic,
Ingen::PatchImpl* parent,
@@ -74,5 +61,5 @@ private:
} // namespace Ingen
-#endif // INTERNALPLUGIN_H
+#endif // PATCHPLUGIN_H
diff --git a/src/libs/engine/events/RequestPluginEvent.hpp b/src/libs/engine/events/RequestPluginEvent.hpp
index cca43627..8f936098 100644
--- a/src/libs/engine/events/RequestPluginEvent.hpp
+++ b/src/libs/engine/events/RequestPluginEvent.hpp
@@ -29,7 +29,7 @@ namespace Ingen {
class PluginImpl;
-/** A request from a client to send the value of a port.
+/** A request from a client to send information about a plugin.
*
* \ingroup engine
*/