NO-OP: whitespace
[ardour.git] / libs / ardour / ardour / audio_port.h
index a473dda418ca92a0c2fcc506a8c4c75b99e0a60e..384de3ef5d0bcd8aad241547780c1e63e34e366b 100644 (file)
@@ -26,7 +26,7 @@
 
 namespace ARDOUR {
 
-class AudioPort : public Port
+class LIBARDOUR_API AudioPort : public Port
 {
    public:
        ~AudioPort ();
@@ -46,15 +46,15 @@ class AudioPort : public Port
        AudioBuffer& get_audio_buffer (pframes_t nframes);
 
   protected:
-       friend class AudioEngine;
-
+       friend class PortManager;
        AudioPort (std::string const &, PortFlags);
-        /* special access for engine only */
+
+        /* special access for PortManager only (hah, C++) */
         Sample* engine_get_whole_audio_buffer ();
 
   private:
        AudioBuffer* _buffer;
-        bool         _buf_valid; 
+        bool         _buf_valid;
 };
 
 } // namespace ARDOUR