summaryrefslogtreecommitdiffstats
path: root/raul
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commitf6b51d6e7dcc4523cc039c63d5ad32ab413315b3 (patch)
tree479148f2ee39472fd904c1c1a79da15860b13bb1 /raul
parent290877811de4220e03f70204846ae2741757fbe3 (diff)
downloadraul-f6b51d6e7dcc4523cc039c63d5ad32ab413315b3.tar.gz
raul-f6b51d6e7dcc4523cc039c63d5ad32ab413315b3.tar.bz2
raul-f6b51d6e7dcc4523cc039c63d5ad32ab413315b3.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul')
-rw-r--r--raul/List.hpp2
-rw-r--r--raul/MIDISink.hpp2
-rw-r--r--raul/PathTable.hpp2
-rw-r--r--raul/Quantizer.hpp2
-rw-r--r--raul/RingBuffer.hpp2
-rw-r--r--raul/SMFReader.hpp2
-rw-r--r--raul/SMFWriter.hpp2
-rw-r--r--raul/Table.hpp2
-rw-r--r--raul/TimeStamp.hpp2
-rw-r--r--raul/URI.hpp2
-rw-r--r--raul/log.hpp2
11 files changed, 11 insertions, 11 deletions
diff --git a/raul/List.hpp b/raul/List.hpp
index 64422a0..38b5c86 100644
--- a/raul/List.hpp
+++ b/raul/List.hpp
@@ -35,7 +35,7 @@ namespace Raul {
* Elements can be added safely while another thread is reading the list.
* Like a typical ringbuffer, this is single-reader single-writer threadsafe
* only. See documentation for specific functions for specifics.
- * \ingroup raul
+ * \ingroup raul
*/
template <typename T>
class List : public Raul::Deletable, public boost::noncopyable
diff --git a/raul/MIDISink.hpp b/raul/MIDISink.hpp
index a1f6ab2..95cdfae 100644
--- a/raul/MIDISink.hpp
+++ b/raul/MIDISink.hpp
@@ -26,7 +26,7 @@ namespace Raul {
/** Pure virtual base for anything you can write MIDI to.
- * \ingroup raul
+ * \ingroup raul
*/
class MIDISink : public Deletable {
public:
diff --git a/raul/PathTable.hpp b/raul/PathTable.hpp
index 65fa681..b028205 100644
--- a/raul/PathTable.hpp
+++ b/raul/PathTable.hpp
@@ -24,7 +24,7 @@
namespace Raul {
/** Table of Paths.
- * \ingroup raul
+ * \ingroup raul
*/
template <typename T>
class PathTable : public Table<Path, T> {
diff --git a/raul/Quantizer.hpp b/raul/Quantizer.hpp
index 4637bb4..5450b83 100644
--- a/raul/Quantizer.hpp
+++ b/raul/Quantizer.hpp
@@ -24,7 +24,7 @@
namespace Raul {
/** Quantizer.
- * \ingroup raul
+ * \ingroup raul
*/
class Quantizer {
public:
diff --git a/raul/RingBuffer.hpp b/raul/RingBuffer.hpp
index f1b8081..bf449c3 100644
--- a/raul/RingBuffer.hpp
+++ b/raul/RingBuffer.hpp
@@ -35,7 +35,7 @@ namespace Raul {
/** A lock-free RingBuffer.
* Read/Write realtime safe.
* Single-reader Single-writer thread safe.
- * \ingroup raul
+ * \ingroup raul
*/
class RingBuffer {
public:
diff --git a/raul/SMFReader.hpp b/raul/SMFReader.hpp
index c7bf0ce..7a56b12 100644
--- a/raul/SMFReader.hpp
+++ b/raul/SMFReader.hpp
@@ -29,7 +29,7 @@ namespace Raul {
/** Standard Midi File (Type 0) Reader
*
* Currently this only reads SMF files with tempo-based timing.
- * \ingroup raul
+ * \ingroup raul
*/
class SMFReader {
public:
diff --git a/raul/SMFWriter.hpp b/raul/SMFWriter.hpp
index fe0f9ef..dcd6f9f 100644
--- a/raul/SMFWriter.hpp
+++ b/raul/SMFWriter.hpp
@@ -28,7 +28,7 @@ namespace Raul {
/** Standard Midi File (Type 0) Writer
- * \ingroup raul
+ * \ingroup raul
*/
class SMFWriter : public Raul::MIDISink {
public:
diff --git a/raul/Table.hpp b/raul/Table.hpp
index c22c346..cbcd87b 100644
--- a/raul/Table.hpp
+++ b/raul/Table.hpp
@@ -36,7 +36,7 @@ namespace Raul {
* This has the advantage over std::map that iterating over the collection
* is fast and sorted. Possibly also faster in some situations due to all
* data being in a single chunk of memory, cache optimized, etc.
- * \ingroup raul
+ * \ingroup raul
*/
template <typename K, typename T>
class Table : public boost::noncopyable {
diff --git a/raul/TimeStamp.hpp b/raul/TimeStamp.hpp
index 16233f4..a6070cd 100644
--- a/raul/TimeStamp.hpp
+++ b/raul/TimeStamp.hpp
@@ -28,7 +28,7 @@ namespace Raul {
/** A type of time stamp
- * \ingroup raul
+ * \ingroup raul
*/
class TimeUnit {
public:
diff --git a/raul/URI.hpp b/raul/URI.hpp
index 8f4a8c2..0d3b94b 100644
--- a/raul/URI.hpp
+++ b/raul/URI.hpp
@@ -32,7 +32,7 @@ namespace Raul {
*
* This "should" be used for proper URIs (RFC3986), but not much support or
* validation is built-in yet. The URI string MUST have a scheme though.
- * \ingroup raul
+ * \ingroup raul
*/
class URI {
public:
diff --git a/raul/log.hpp b/raul/log.hpp
index 6e6b81f..35221c5 100644
--- a/raul/log.hpp
+++ b/raul/log.hpp
@@ -25,7 +25,7 @@
namespace Raul {
/** Buffer for (possibly coloured) log printing.
- * \ingroup raul
+ * \ingroup raul
*/
class LogBuffer : public std::streambuf
{