more MTC stuff, including toggleable use of torben's PI controller
[ardour.git] / libs / ardour / ardour / source.h
index 62aca9136514f5369671f1c0c06f8e3557bb79bc..b2e1381e431d777102aafcbd0b390ab82cb67831 100644 (file)
@@ -82,9 +82,6 @@ class Source : public SessionObject, public boost::noncopyable
        virtual bool set_destructive (bool /*yn*/) { return false; }
        virtual bool length_mutable() const    { return false; }
 
-       void use ()    { _in_use++; }
-       void disuse () { if (_in_use) { _in_use--; } }
-
        static sigc::signal<void,Source*>             SourceCreated;
        sigc::signal<void,boost::shared_ptr<Source> > Switched;
 
@@ -118,7 +115,6 @@ class Source : public SessionObject, public boost::noncopyable
        Glib::Mutex         _playlist_lock;
 
   private:
-       uint32_t _in_use;
        void fix_writable_flags ();
 };