diff options
author | David Robillard <d@drobilla.net> | 2011-04-16 19:02:36 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-16 19:02:36 +0000 |
commit | 9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch) | |
tree | 089c1366a567dfbf88c0473288236b276ef24bf6 /src/engine/events | |
parent | 987710474b824cb92d83ff6fa7a090f50e10756f (diff) | |
download | ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2 ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip |
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events')
38 files changed, 0 insertions, 125 deletions
diff --git a/src/engine/events/Connect.cpp b/src/engine/events/Connect.cpp index 61329f03..bd464fc7 100644 --- a/src/engine/events/Connect.cpp +++ b/src/engine/events/Connect.cpp @@ -41,7 +41,6 @@ namespace Events { using namespace Shared; - Connect::Connect(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, const Path& src_port_path, const Path& dst_port_path) : QueuedEvent(engine, request, timestamp) , _src_port_path(src_port_path) @@ -55,7 +54,6 @@ Connect::Connect(Engine& engine, SharedPtr<Request> request, SampleCount timesta { } - void Connect::pre_process() { @@ -149,7 +147,6 @@ Connect::pre_process() QueuedEvent::pre_process(); } - void Connect::execute(ProcessContext& context) { @@ -169,7 +166,6 @@ Connect::execute(ProcessContext& context) } } - void Connect::post_process() { @@ -203,7 +199,6 @@ Connect::post_process() _request->respond_error(ss.str()); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Connect.hpp b/src/engine/events/Connect.hpp index 02e914af..75639003 100644 --- a/src/engine/events/Connect.hpp +++ b/src/engine/events/Connect.hpp @@ -41,7 +41,6 @@ class CompiledPatch; namespace Events { - /** Make a Connection between two Ports. * * \ingroup engine @@ -81,7 +80,6 @@ private: Raul::Array<BufferFactory::Ref>* _buffers; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/CreateNode.cpp b/src/engine/events/CreateNode.cpp index e5f8d721..25ceaa3a 100644 --- a/src/engine/events/CreateNode.cpp +++ b/src/engine/events/CreateNode.cpp @@ -66,7 +66,6 @@ CreateNode::CreateNode( _polyphonic = true; } - void CreateNode::pre_process() { @@ -105,7 +104,6 @@ CreateNode::pre_process() QueuedEvent::pre_process(); } - void CreateNode::execute(ProcessContext& context) { @@ -117,7 +115,6 @@ CreateNode::execute(ProcessContext& context) } } - void CreateNode::post_process() { @@ -144,7 +141,6 @@ CreateNode::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/CreateNode.hpp b/src/engine/events/CreateNode.hpp index 1e341c1a..f1a14464 100644 --- a/src/engine/events/CreateNode.hpp +++ b/src/engine/events/CreateNode.hpp @@ -31,7 +31,6 @@ class CompiledPatch; namespace Events { - /** An event to load a Node and insert it into a Patch. * * \ingroup engine @@ -64,7 +63,6 @@ private: Shared::Resource::Properties _properties; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/CreatePatch.cpp b/src/engine/events/CreatePatch.cpp index f5e07797..cb972cf9 100644 --- a/src/engine/events/CreatePatch.cpp +++ b/src/engine/events/CreatePatch.cpp @@ -36,7 +36,6 @@ namespace Events { using namespace Shared; - CreatePatch::CreatePatch( Engine& engine, SharedPtr<Request> request, @@ -54,7 +53,6 @@ CreatePatch::CreatePatch( { } - void CreatePatch::pre_process() { @@ -108,7 +106,6 @@ CreatePatch::pre_process() QueuedEvent::pre_process(); } - void CreatePatch::execute(ProcessContext& context) { @@ -128,7 +125,6 @@ CreatePatch::execute(ProcessContext& context) } } - void CreatePatch::post_process() { @@ -163,7 +159,6 @@ CreatePatch::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/CreatePatch.hpp b/src/engine/events/CreatePatch.hpp index 84c0c0aa..5a272541 100644 --- a/src/engine/events/CreatePatch.hpp +++ b/src/engine/events/CreatePatch.hpp @@ -28,7 +28,6 @@ class CompiledPatch; namespace Events { - /** Creates a new Patch. * * \ingroup engine @@ -60,9 +59,7 @@ private: Shared::Resource::Properties _properties; }; - } // namespace Ingen } // namespace Events - #endif // INGEN_EVENTS_CREATEPATCH_HPP diff --git a/src/engine/events/CreatePort.cpp b/src/engine/events/CreatePort.cpp index cb05a020..eda6dedd 100644 --- a/src/engine/events/CreatePort.cpp +++ b/src/engine/events/CreatePort.cpp @@ -42,7 +42,6 @@ namespace Events { using namespace Shared; - CreatePort::CreatePort( Engine& engine, SharedPtr<Request> request, @@ -73,7 +72,6 @@ CreatePort::CreatePort( _error = UNKNOWN_TYPE; } - void CreatePort::pre_process() { @@ -143,7 +141,6 @@ CreatePort::pre_process() QueuedEvent::pre_process(); } - void CreatePort::execute(ProcessContext& context) { @@ -163,7 +160,6 @@ CreatePort::execute(ProcessContext& context) _request->unblock(); } - void CreatePort::post_process() { @@ -191,7 +187,6 @@ CreatePort::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/CreatePort.hpp b/src/engine/events/CreatePort.hpp index 1bee8be6..cac3c2b6 100644 --- a/src/engine/events/CreatePort.hpp +++ b/src/engine/events/CreatePort.hpp @@ -32,7 +32,6 @@ class DriverPort; namespace Events { - /** An event to add a Port to a Patch. * * \ingroup engine @@ -74,7 +73,6 @@ private: Shared::Resource::Properties _properties; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Deactivate.hpp b/src/engine/events/Deactivate.hpp index 7f664455..34fdd80b 100644 --- a/src/engine/events/Deactivate.hpp +++ b/src/engine/events/Deactivate.hpp @@ -24,7 +24,6 @@ namespace Ingen { namespace Events { - /** Deactivates the engine. * * \ingroup engine @@ -42,7 +41,6 @@ public: } }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Delete.cpp b/src/engine/events/Delete.cpp index a628be76..5646b9c5 100644 --- a/src/engine/events/Delete.cpp +++ b/src/engine/events/Delete.cpp @@ -37,7 +37,6 @@ namespace Events { using namespace Shared; - Delete::Delete(Engine& engine, SharedPtr<Request> request, FrameTime time, const Raul::Path& path) : QueuedEvent(engine, request, time, true) , _path(path) @@ -54,13 +53,11 @@ Delete::Delete(Engine& engine, SharedPtr<Request> request, FrameTime time, const assert(request->source()); } - Delete::~Delete() { delete _disconnect_event; } - void Delete::pre_process() { @@ -127,7 +124,6 @@ Delete::pre_process() QueuedEvent::pre_process(); } - void Delete::execute(ProcessContext& context) { @@ -166,7 +162,6 @@ Delete::execute(ProcessContext& context) _request->unblock(); } - void Delete::post_process() { @@ -207,6 +202,5 @@ Delete::post_process() _engine.maid()->push(_garbage); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Delete.hpp b/src/engine/events/Delete.hpp index c8a6ee96..57dac59b 100644 --- a/src/engine/events/Delete.hpp +++ b/src/engine/events/Delete.hpp @@ -40,7 +40,6 @@ namespace Events { class DisconnectAll; - /** \page methods * <h2>DELETE</h2> * As per WebDAV (RFC4918 S9.6). @@ -88,7 +87,6 @@ private: SharedPtr< Raul::Table<Raul::Path, SharedPtr<Shared::GraphObject> > > _removed_table; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Disconnect.cpp b/src/engine/events/Disconnect.cpp index a05a2792..633871c3 100644 --- a/src/engine/events/Disconnect.cpp +++ b/src/engine/events/Disconnect.cpp @@ -38,7 +38,6 @@ using namespace Raul; namespace Ingen { namespace Events { - Disconnect::Disconnect( Engine& engine, SharedPtr<Request> request, @@ -59,7 +58,6 @@ Disconnect::Disconnect( { } - Disconnect::Disconnect( Engine& engine, SharedPtr<Request> request, @@ -81,7 +79,6 @@ Disconnect::Disconnect( { } - void Disconnect::pre_process() { @@ -166,14 +163,12 @@ Disconnect::pre_process() _clear_dst_port = true; } - if (!_internal && _patch->enabled()) _compiled_patch = _patch->compile(); QueuedEvent::pre_process(); } - void Disconnect::execute(ProcessContext& context) { @@ -221,7 +216,6 @@ Disconnect::execute(ProcessContext& context) } } - void Disconnect::post_process() { @@ -261,7 +255,6 @@ Disconnect::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Disconnect.hpp b/src/engine/events/Disconnect.hpp index 28239332..503458be 100644 --- a/src/engine/events/Disconnect.hpp +++ b/src/engine/events/Disconnect.hpp @@ -38,7 +38,6 @@ class PortImpl; namespace Events { - /** Make a Connection between two Ports. * * \ingroup engine @@ -96,7 +95,6 @@ private: bool _clear_dst_port; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/DisconnectAll.cpp b/src/engine/events/DisconnectAll.cpp index 0fdb0cb8..cc49fb17 100644 --- a/src/engine/events/DisconnectAll.cpp +++ b/src/engine/events/DisconnectAll.cpp @@ -40,7 +40,6 @@ using namespace Raul; namespace Ingen { namespace Events { - DisconnectAll::DisconnectAll(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, const Path& parent_path, const Path& node_path) : QueuedEvent(engine, request, timestamp) , _parent_path(parent_path) @@ -53,7 +52,6 @@ DisconnectAll::DisconnectAll(Engine& engine, SharedPtr<Request> request, SampleC { } - /** Internal version for use by other events. */ DisconnectAll::DisconnectAll(Engine& engine, PatchImpl* parent, GraphObjectImpl* object) @@ -68,14 +66,12 @@ DisconnectAll::DisconnectAll(Engine& engine, PatchImpl* parent, GraphObjectImpl* { } - DisconnectAll::~DisconnectAll() { for (Raul::List<Disconnect*>::iterator i = _disconnect_events.begin(); i != _disconnect_events.end(); ++i) delete (*i); } - void DisconnectAll::pre_process() { @@ -144,7 +140,6 @@ DisconnectAll::pre_process() QueuedEvent::pre_process(); } - void DisconnectAll::execute(ProcessContext& context) { @@ -160,7 +155,6 @@ DisconnectAll::execute(ProcessContext& context) _parent->compiled_patch(_compiled_patch); } - void DisconnectAll::post_process() { @@ -191,7 +185,6 @@ DisconnectAll::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/DisconnectAll.hpp b/src/engine/events/DisconnectAll.hpp index ae114977..57c5c495 100644 --- a/src/engine/events/DisconnectAll.hpp +++ b/src/engine/events/DisconnectAll.hpp @@ -33,7 +33,6 @@ namespace Events { class Disconnect; - /** An event to disconnect all connections to a Node. * * \ingroup engine @@ -79,9 +78,7 @@ private: bool _deleting; }; - } // namespace Ingen } // namespace Events - #endif // INGEN_EVENTS_DISCONNECTALL_HPP diff --git a/src/engine/events/Get.cpp b/src/engine/events/Get.cpp index 17c4699d..9769be86 100644 --- a/src/engine/events/Get.cpp +++ b/src/engine/events/Get.cpp @@ -32,7 +32,6 @@ using namespace Raul; namespace Ingen { namespace Events { - Get::Get( Engine& engine, SharedPtr<Request> request, @@ -45,7 +44,6 @@ Get::Get( { } - void Get::pre_process() { @@ -60,7 +58,6 @@ Get::pre_process() QueuedEvent::pre_process(); } - void Get::post_process() { @@ -80,7 +77,6 @@ Get::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Get.hpp b/src/engine/events/Get.hpp index ce5a839d..cb2dd7e4 100644 --- a/src/engine/events/Get.hpp +++ b/src/engine/events/Get.hpp @@ -29,7 +29,6 @@ class PluginImpl; namespace Events { - /** A request from a client to send an object. * * \ingroup engine @@ -53,7 +52,6 @@ private: NodeFactory::Plugins _plugins; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/LoadPlugins.cpp b/src/engine/events/LoadPlugins.cpp index eb4d2db7..81031e0d 100644 --- a/src/engine/events/LoadPlugins.cpp +++ b/src/engine/events/LoadPlugins.cpp @@ -24,7 +24,6 @@ namespace Ingen { namespace Events { - LoadPlugins::LoadPlugins(Engine& engine, SharedPtr<Request> request, SampleCount timestamp) : QueuedEvent(engine, request, timestamp, bool(request)) { @@ -47,7 +46,6 @@ LoadPlugins::post_process() _request->respond_ok(); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/LoadPlugins.hpp b/src/engine/events/LoadPlugins.hpp index 3756ce7d..01920597 100644 --- a/src/engine/events/LoadPlugins.hpp +++ b/src/engine/events/LoadPlugins.hpp @@ -23,7 +23,6 @@ namespace Ingen { namespace Events { - /** Loads all plugins into the internal plugin database (in NodeFactory). * * \ingroup engine @@ -39,7 +38,6 @@ public: void post_process(); }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Move.cpp b/src/engine/events/Move.cpp index 5a568dd9..b2526101 100644 --- a/src/engine/events/Move.cpp +++ b/src/engine/events/Move.cpp @@ -33,7 +33,6 @@ namespace Events { using namespace Shared; - Move::Move(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, const Path& path, const Path& new_path) : QueuedEvent(engine, request, timestamp) , _old_path(path) @@ -43,12 +42,10 @@ Move::Move(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, co { } - Move::~Move() { } - void Move::pre_process() { @@ -94,7 +91,6 @@ Move::pre_process() QueuedEvent::pre_process(); } - void Move::execute(ProcessContext& context) { @@ -108,7 +104,6 @@ Move::execute(ProcessContext& context) } } - void Move::post_process() { @@ -131,6 +126,5 @@ Move::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Move.hpp b/src/engine/events/Move.hpp index 84c180a2..13748144 100644 --- a/src/engine/events/Move.hpp +++ b/src/engine/events/Move.hpp @@ -28,7 +28,6 @@ class PatchImpl; namespace Events { - /** \page methods * <h2>MOVE</h2> * As per WebDAV (RFC4918 S9.9). @@ -72,7 +71,6 @@ private: EngineStore::iterator _store_iterator; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/Ping.hpp b/src/engine/events/Ping.hpp index e5edc662..271f97f4 100644 --- a/src/engine/events/Ping.hpp +++ b/src/engine/events/Ping.hpp @@ -28,7 +28,6 @@ class PortImpl; namespace Events { - /** A ping that travels through the pre-processed event queue before responding * (useful for the order guarantee). * @@ -44,7 +43,6 @@ public: void post_process() { _request->respond_ok(); } }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/RegisterClient.cpp b/src/engine/events/RegisterClient.cpp index f3e9ba8a..9eb67806 100644 --- a/src/engine/events/RegisterClient.cpp +++ b/src/engine/events/RegisterClient.cpp @@ -25,7 +25,6 @@ using namespace Raul; namespace Ingen { namespace Events { - RegisterClient::RegisterClient(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, @@ -37,7 +36,6 @@ RegisterClient::RegisterClient(Engine& engine, { } - void RegisterClient::pre_process() { @@ -46,14 +44,12 @@ RegisterClient::pre_process() QueuedEvent::pre_process(); } - void RegisterClient::post_process() { _request->respond_ok(); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/RegisterClient.hpp b/src/engine/events/RegisterClient.hpp index 2703484c..063f0b31 100644 --- a/src/engine/events/RegisterClient.hpp +++ b/src/engine/events/RegisterClient.hpp @@ -25,7 +25,6 @@ namespace Ingen { namespace Events { - /** Registers a new client with the OSC system, so it can receive updates. * * \ingroup engine @@ -47,7 +46,6 @@ private: Shared::ClientInterface* _client; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/RequestMetadata.cpp b/src/engine/events/RequestMetadata.cpp index b8adc34e..ad116474 100644 --- a/src/engine/events/RequestMetadata.cpp +++ b/src/engine/events/RequestMetadata.cpp @@ -39,7 +39,6 @@ namespace Events { using namespace Shared; - RequestMetadata::RequestMetadata(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, @@ -55,7 +54,6 @@ RequestMetadata::RequestMetadata(Engine& engine, { } - void RequestMetadata::pre_process() { @@ -85,7 +83,6 @@ RequestMetadata::pre_process() QueuedEvent::pre_process(); } - void RequestMetadata::execute(ProcessContext& context) { @@ -108,7 +105,6 @@ RequestMetadata::execute(ProcessContext& context) } } - void RequestMetadata::post_process() { @@ -134,7 +130,6 @@ RequestMetadata::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/RequestMetadata.hpp b/src/engine/events/RequestMetadata.hpp index 96afe6b2..891282f3 100644 --- a/src/engine/events/RequestMetadata.hpp +++ b/src/engine/events/RequestMetadata.hpp @@ -29,7 +29,6 @@ class GraphObjectImpl; namespace Events { - /** \page methods * <h2>GET</h2> * As per HTTP (RFC2616 S9.3). @@ -69,7 +68,6 @@ private: Shared::Resource::Graph _context; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SendBinding.cpp b/src/engine/events/SendBinding.cpp index 0a28b8b0..64785829 100644 --- a/src/engine/events/SendBinding.cpp +++ b/src/engine/events/SendBinding.cpp @@ -27,7 +27,6 @@ using namespace std; namespace Ingen { namespace Events { - void SendBinding::post_process() { @@ -49,7 +48,6 @@ SendBinding::post_process() _engine.broadcaster()->set_property(_port->path(), uris.ingen_controlBinding, dict); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SendBinding.hpp b/src/engine/events/SendBinding.hpp index c9def7ff..7f2ff91a 100644 --- a/src/engine/events/SendBinding.hpp +++ b/src/engine/events/SendBinding.hpp @@ -28,7 +28,6 @@ class PortImpl; namespace Events { - /** A special event used internally to send control bindings from the audio thread. * * See SendPortValue documentation for details. @@ -79,7 +78,6 @@ private: int16_t _num; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SendPortActivity.cpp b/src/engine/events/SendPortActivity.cpp index 09978af1..fedebdda 100644 --- a/src/engine/events/SendPortActivity.cpp +++ b/src/engine/events/SendPortActivity.cpp @@ -23,14 +23,12 @@ namespace Ingen { namespace Events { - void SendPortActivity::post_process() { _engine.broadcaster()->activity(_port->path()); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SendPortActivity.hpp b/src/engine/events/SendPortActivity.hpp index 9aa92d94..7b47e761 100644 --- a/src/engine/events/SendPortActivity.hpp +++ b/src/engine/events/SendPortActivity.hpp @@ -27,7 +27,6 @@ class PortImpl; namespace Events { - /** A special event used internally to send port activity notification (e.g. * MIDI event activity) from the audio thread. * @@ -62,7 +61,6 @@ private: PortImpl* _port; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SendPortValue.cpp b/src/engine/events/SendPortValue.cpp index a2d82ac8..62ed76ec 100644 --- a/src/engine/events/SendPortValue.cpp +++ b/src/engine/events/SendPortValue.cpp @@ -27,7 +27,6 @@ using namespace std; namespace Ingen { namespace Events { - void SendPortValue::post_process() { @@ -36,7 +35,6 @@ SendPortValue::post_process() _engine.world()->uris()->ingen_value, _value); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SendPortValue.hpp b/src/engine/events/SendPortValue.hpp index 847ef741..c7b36c6c 100644 --- a/src/engine/events/SendPortValue.hpp +++ b/src/engine/events/SendPortValue.hpp @@ -28,7 +28,6 @@ class PortImpl; namespace Events { - /** A special event used internally to send port values from the audio thread. * * This is created in the audio thread (using in-place new on a preallocated @@ -75,7 +74,6 @@ private: Raul::Atom _value; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SetMetadata.cpp b/src/engine/events/SetMetadata.cpp index afd4a226..0d5e3f88 100644 --- a/src/engine/events/SetMetadata.cpp +++ b/src/engine/events/SetMetadata.cpp @@ -48,7 +48,6 @@ namespace Events { using namespace Shared; typedef Shared::Resource::Properties Properties; - SetMetadata::SetMetadata( Engine& engine, SharedPtr<Request> request, @@ -88,7 +87,6 @@ SetMetadata::SetMetadata( */ } - SetMetadata::~SetMetadata() { for (SetEvents::iterator i = _set_events.begin(); i != _set_events.end(); ++i) @@ -97,7 +95,6 @@ SetMetadata::~SetMetadata() delete _create_event; } - void SetMetadata::pre_process() { @@ -175,7 +172,6 @@ SetMetadata::pre_process() _object->remove_property(key, value); } - for (Properties::iterator p = _properties.begin(); p != _properties.end(); ++p) { const Raul::URI& key = p->first; const Raul::Atom& value = p->second; @@ -263,7 +259,6 @@ SetMetadata::pre_process() QueuedEvent::pre_process(); } - void SetMetadata::execute(ProcessContext& context) { @@ -343,7 +338,6 @@ SetMetadata::execute(ProcessContext& context) _request->unblock(); } - void SetMetadata::post_process() { @@ -380,7 +374,6 @@ SetMetadata::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SetMetadata.hpp b/src/engine/events/SetMetadata.hpp index 021cb3f4..f1ef9423 100644 --- a/src/engine/events/SetMetadata.hpp +++ b/src/engine/events/SetMetadata.hpp @@ -31,7 +31,6 @@ class CompiledPatch; namespace Events { - /** \page methods * <h2>POST</h2> * As per HTTP (RFC2616 S9.5). @@ -117,7 +116,6 @@ private: SharedPtr<ControlBindings::Bindings> _old_bindings; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SetPortValue.cpp b/src/engine/events/SetPortValue.cpp index 56285a60..5fdc5da9 100644 --- a/src/engine/events/SetPortValue.cpp +++ b/src/engine/events/SetPortValue.cpp @@ -46,7 +46,6 @@ namespace Events { using namespace Shared; - SetPortValue::SetPortValue(Engine& engine, SharedPtr<Request> request, bool queued, @@ -61,7 +60,6 @@ SetPortValue::SetPortValue(Engine& engine, { } - /** Internal */ SetPortValue::SetPortValue(Engine& engine, SharedPtr<Request> request, @@ -80,7 +78,6 @@ SetPortValue::~SetPortValue() { } - void SetPortValue::pre_process() { @@ -108,7 +105,6 @@ SetPortValue::pre_process() QueuedEvent::pre_process(); } - void SetPortValue::execute(ProcessContext& context) { @@ -122,7 +118,6 @@ SetPortValue::execute(ProcessContext& context) _engine.control_bindings()->port_value_changed(context, _port); } - void SetPortValue::apply(Context& context) { @@ -192,7 +187,6 @@ SetPortValue::apply(Context& context) } } - void SetPortValue::post_process() { @@ -224,7 +218,6 @@ SetPortValue::post_process() } } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/SetPortValue.hpp b/src/engine/events/SetPortValue.hpp index c0cbb635..7b483709 100644 --- a/src/engine/events/SetPortValue.hpp +++ b/src/engine/events/SetPortValue.hpp @@ -28,7 +28,6 @@ class PortImpl; namespace Events { - /** An event to change the value of a port. * * This event can either be queued or immediate, depending on the queued @@ -76,7 +75,6 @@ private: PortImpl* _port; }; - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/UnregisterClient.cpp b/src/engine/events/UnregisterClient.cpp index 6f0b6357..efa20a04 100644 --- a/src/engine/events/UnregisterClient.cpp +++ b/src/engine/events/UnregisterClient.cpp @@ -26,14 +26,12 @@ using namespace Raul; namespace Ingen { namespace Events { - UnregisterClient::UnregisterClient(Engine& engine, SharedPtr<Request> request, SampleCount timestamp, const URI& uri) : QueuedEvent(engine, request, timestamp) , _uri(uri) { } - void UnregisterClient::post_process() { @@ -43,7 +41,6 @@ UnregisterClient::post_process() _request->respond_error("Unable to unregister client"); } - } // namespace Ingen } // namespace Events diff --git a/src/engine/events/UnregisterClient.hpp b/src/engine/events/UnregisterClient.hpp index e3919b36..e0bebf65 100644 --- a/src/engine/events/UnregisterClient.hpp +++ b/src/engine/events/UnregisterClient.hpp @@ -24,7 +24,6 @@ namespace Ingen { namespace Events { - /** Unregisters an OSC client so it no longer receives notifications. * * \ingroup engine @@ -43,7 +42,6 @@ private: Raul::URI _uri; }; - } // namespace Ingen } // namespace Events |