make 3.0 catch up with transport and other changes in 2.X (hand applied, not merged)
[ardour.git] / libs / ardour / ardour / session_object.h
index 7a05ab16b035fef53732e8913d55bc7c4f04bcbe..3a796c75b5711e65e38e635488728479cc752b10 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000-2007 Paul Davis 
+    Copyright (C) 2000-2007 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
 #define __ardour_session_object_h__
 
 #include <string>
-#include "pbd/statefuldestructible.h" 
+#include "pbd/statefuldestructible.h"
 
 namespace ARDOUR {
 
@@ -31,7 +31,6 @@ class Session;
  *
  * This is a few common things factored out of IO which weren't IO specific
  * (to fix the problem with e.g. PluginInsert being an IO which it shouldn't be).
- * collection of input and output ports with connections.
  */
 class SessionObject : public PBD::StatefulDestructible
 {
@@ -40,10 +39,10 @@ public:
                : _session(session)
                , _name(name)
        {}
-       
+
        Session&           session() const { return _session; }
        const std::string& name()    const { return _name; }
-       
+
        virtual bool set_name (const std::string& str) {
                if (_name != str) {
                        _name = str;
@@ -51,7 +50,7 @@ public:
                }
                return true;
        }
-       
+
        sigc::signal<void> NameChanged;
 
 protected: