summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ingen/ClientInterface.hpp1
-rw-r--r--include/ingen/CommonInterface.hpp2
-rw-r--r--include/ingen/Connection.hpp2
-rw-r--r--include/ingen/EngineInterface.hpp2
-rw-r--r--include/ingen/EventType.hpp2
-rw-r--r--include/ingen/GraphObject.hpp2
-rw-r--r--include/ingen/Node.hpp2
-rw-r--r--include/ingen/Patch.hpp2
-rw-r--r--include/ingen/Plugin.hpp2
-rw-r--r--include/ingen/Port.hpp2
-rw-r--r--include/ingen/PortType.hpp2
-rw-r--r--include/ingen/Resource.hpp2
12 files changed, 0 insertions, 23 deletions
diff --git a/include/ingen/ClientInterface.hpp b/include/ingen/ClientInterface.hpp
index 3fb81f0e..8da24135 100644
--- a/include/ingen/ClientInterface.hpp
+++ b/include/ingen/ClientInterface.hpp
@@ -57,7 +57,6 @@ public:
virtual void activity(const Raul::Path& path) = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/CommonInterface.hpp b/include/ingen/CommonInterface.hpp
index 18ee87db..da45c197 100644
--- a/include/ingen/CommonInterface.hpp
+++ b/include/ingen/CommonInterface.hpp
@@ -29,7 +29,6 @@ namespace Raul { class Atom; class Path; class URI; }
namespace Ingen {
namespace Shared {
-
/** Abstract interface common to both engine and clients.
* Purely virtual (except for the destructor).
*
@@ -70,7 +69,6 @@ public:
const Raul::Atom& value) = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/Connection.hpp b/include/ingen/Connection.hpp
index 8e429631..a9a26768 100644
--- a/include/ingen/Connection.hpp
+++ b/include/ingen/Connection.hpp
@@ -23,7 +23,6 @@
namespace Ingen {
namespace Shared {
-
/** A connection between two ports.
*
* \ingroup interface
@@ -36,7 +35,6 @@ public:
virtual const Raul::Path dst_port_path() const = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/EngineInterface.hpp b/include/ingen/EngineInterface.hpp
index 685d5488..2caede76 100644
--- a/include/ingen/EngineInterface.hpp
+++ b/include/ingen/EngineInterface.hpp
@@ -27,7 +27,6 @@ namespace Shared {
class ClientInterface;
-
/** The (only) interface clients use to communicate with the engine.
* Purely virtual (except for the destructor).
*
@@ -69,7 +68,6 @@ public:
const Raul::URI& key) = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/EventType.hpp b/include/ingen/EventType.hpp
index 8a19ba42..cc7f89dd 100644
--- a/include/ingen/EventType.hpp
+++ b/include/ingen/EventType.hpp
@@ -23,7 +23,6 @@
namespace Ingen {
namespace Shared {
-
/** A type of event (that can live in an EventBuffer).
*/
class EventType {
@@ -73,7 +72,6 @@ private:
Symbol _symbol;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/GraphObject.hpp b/include/ingen/GraphObject.hpp
index 6a8513fc..f40aacd7 100644
--- a/include/ingen/GraphObject.hpp
+++ b/include/ingen/GraphObject.hpp
@@ -27,7 +27,6 @@ namespace Raul { class Atom; class Path; class Symbol; }
namespace Ingen {
namespace Shared {
-
/** An object on the audio graph - Patch, Node, Port, etc.
*
* Purely virtual (except for the destructor).
@@ -45,7 +44,6 @@ public:
virtual GraphObject* graph_parent() const = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/Node.hpp b/include/ingen/Node.hpp
index c97d1643..785d25a8 100644
--- a/include/ingen/Node.hpp
+++ b/include/ingen/Node.hpp
@@ -28,7 +28,6 @@ namespace Shared {
class Port;
class Plugin;
-
/** A Node (or "module") in a Patch (which is also a Node).
*
* A Node is a unit with input/output ports, a process() method, and some other
@@ -46,7 +45,6 @@ public:
virtual const Plugin* plugin() const = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/Patch.hpp b/include/ingen/Patch.hpp
index f948c102..a3c5dc34 100644
--- a/include/ingen/Patch.hpp
+++ b/include/ingen/Patch.hpp
@@ -30,7 +30,6 @@ namespace Shared {
class Connection;
-
/** A Path (graph of Nodes/Connections)
*
* \ingroup interface
@@ -47,7 +46,6 @@ public:
virtual uint32_t internal_poly() const = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/Plugin.hpp b/include/ingen/Plugin.hpp
index 358e6adb..f53d84c2 100644
--- a/include/ingen/Plugin.hpp
+++ b/include/ingen/Plugin.hpp
@@ -25,7 +25,6 @@
namespace Ingen {
namespace Shared {
-
class Plugin : virtual public Resource
{
public:
@@ -58,7 +57,6 @@ public:
}
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/Port.hpp b/include/ingen/Port.hpp
index 9bd0437f..c716c615 100644
--- a/include/ingen/Port.hpp
+++ b/include/ingen/Port.hpp
@@ -30,7 +30,6 @@ namespace Raul { class Atom; }
namespace Ingen {
namespace Shared {
-
/** A Port on a Node.
*
* Purely virtual (except for the destructor).
@@ -53,7 +52,6 @@ public:
virtual const Raul::Atom& value() const = 0;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/PortType.hpp b/include/ingen/PortType.hpp
index 92b86332..961bc2f3 100644
--- a/include/ingen/PortType.hpp
+++ b/include/ingen/PortType.hpp
@@ -23,7 +23,6 @@
namespace Ingen {
namespace Shared {
-
/** The type of a port.
*
* This type refers to the type of the port itself (not necessarily the type
@@ -93,7 +92,6 @@ private:
Symbol _symbol;
};
-
} // namespace Shared
} // namespace Ingen
diff --git a/include/ingen/Resource.hpp b/include/ingen/Resource.hpp
index 66183951..2e0dc6eb 100644
--- a/include/ingen/Resource.hpp
+++ b/include/ingen/Resource.hpp
@@ -27,7 +27,6 @@
namespace Ingen {
namespace Shared {
-
class Resource
{
public:
@@ -93,7 +92,6 @@ public:
const Raul::Atom& value) const = 0;
};
-
} // namespace Shared
} // namespace Ingen