part two of: make region gain line visibility global, not per-region
[ardour.git] / libs / ardour / ardour / audio_port.h
index 85bac1f2864ee830788023f3f165188b49b59b7d..6b534afe621f43f9447667adae157cdd2820b303 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002-2009 Paul Davis 
+    Copyright (C) 2002-2009 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
 
 namespace ARDOUR {
 
-class AudioPort : public Port 
+class AudioPort : public Port
 {
    public:
        ~AudioPort ();
-       
+
        DataType type () const {
                return DataType::AUDIO;
        }
-       
-       void cycle_start (nframes_t);
-       void cycle_end (nframes_t);
+
+       void cycle_start (pframes_t);
+       void cycle_end (pframes_t);
        void cycle_split ();
 
-       Buffer& get_buffer (nframes_t nframes, nframes_t offset = 0) {
-               return get_audio_buffer (nframes, offset);
+       Buffer& get_buffer (pframes_t nframes) {
+               return get_audio_buffer (nframes);
        }
-       
-       AudioBuffer& get_audio_buffer (nframes_t nframes, nframes_t offset = 0);
+
+       AudioBuffer& get_audio_buffer (pframes_t nframes);
 
   protected:
        friend class AudioEngine;
 
        AudioPort (std::string const &, Flags);
-  
+
   private:
        AudioBuffer* _buffer;
-
 };
+
 } // namespace ARDOUR
 
 #endif /* __ardour_audio_port_h__ */