summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/element_import_handler.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /libs/ardour/ardour/element_import_handler.h
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/element_import_handler.h')
-rw-r--r--libs/ardour/ardour/element_import_handler.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/libs/ardour/ardour/element_import_handler.h b/libs/ardour/ardour/element_import_handler.h
index 2401cf7a06..be2e3fafb0 100644
--- a/libs/ardour/ardour/element_import_handler.h
+++ b/libs/ardour/ardour/element_import_handler.h
@@ -34,7 +34,7 @@ namespace ARDOUR {
class Session;
class ElementImporter;
-/// Virtual interface class for element import handlers
+/// Virtual interface class for element import handlers
class ElementImportHandler
{
public:
@@ -48,58 +48,58 @@ class ElementImportHandler
* @param source XML tree to be parsed
* @see elements
*/
- ElementImportHandler (XMLTree const & source, ARDOUR::Session & session) :
- source (source), session (session) { }
-
+ ElementImportHandler (XMLTree const & source, ARDOUR::Session & session)
+ : source (source), session (session) { }
+
virtual ~ElementImportHandler ();
-
+
/** Gets a textual representation of the element type
* @return textual representation of element type
*/
virtual std::string get_info () const = 0;
-
+
/// Elements this handler handles
ElementList elements;
-
+
/* For checking duplicates names against queued elements */
-
+
/** Checks whether or not an element with some name is queued or not
* @param name name to check
* @return true if name is not used
*/
bool check_name (const std::string & name) const;
-
+
/// Adds name to the list of used names
void add_name (std::string name);
-
+
/// Removes name from the list of used names
void remove_name (const std::string & name);
-
+
/// Checks wheter or not all elements can be imported cleanly
static bool dirty () { return _dirty; }
-
+
/// Sets handler dirty
static void set_dirty () { _dirty = true; }
-
+
/// Checks wheter or not all elements were imported cleanly
static bool errors () { return _errors; }
-
+
/// Sets handler dirty
static void set_errors () { _errors = true; }
protected:
/// Source session XML tree
XMLTree const & source;
-
+
/// Destination session
ARDOUR::Session & session;
-
+
/// Session XML readability
static bool _dirty;
-
+
/// Errors post initialization
static bool _errors;
-
+
private:
/// Set of names for duplicate checking
std::set<std::string> names;