Redesign Session+Route Template Meta Script API
[ardour.git] / libs / ardour / ardour / vca_manager.h
index e02acc809092f299e4525bc18a39442da545cee3..356ed63292350aab084ebac685ce7ef9127c3d04 100644 (file)
@@ -40,14 +40,14 @@ class VCA;
 
 class LIBARDOUR_API VCAManager : public SessionHandleRef, public PBD::StatefulDestructible
 {
-     public:
+public:
        VCAManager (ARDOUR::Session&);
        ~VCAManager ();
 
-       int create_vca (uint32_t n, std::string const & name = std::string());
+       int create_vca (uint32_t how_many, std::string const & name = std::string());
        void remove_vca (boost::shared_ptr<VCA>);
 
-       boost::shared_ptr<VCA> vca_by_number(uint32_t) const;
+       boost::shared_ptr<VCA> vca_by_number(int32_t) const;
 
        VCAList vcas() const;
        VCAList::size_type n_vcas() const { return _vcas.size(); }
@@ -62,7 +62,7 @@ class LIBARDOUR_API VCAManager : public SessionHandleRef, public PBD::StatefulDe
 
        static std::string xml_node_name;
 
-     private:
+private:
        mutable Glib::Threads::Mutex lock;
        VCAList _vcas;
        bool _vcas_loaded;