extend/modify PresentationInfo to make searching for routes via Session::get_remote_n...
[ardour.git] / libs / ardour / ardour / latent.h
index ba2f91d2a28ec4f7ca7a50eb36b0f424a29c2515..bd639a865135c1e05fabe91f7c0f6cc21749dbcf 100644 (file)
@@ -1,13 +1,33 @@
+/*
+    Copyright (C) 1999-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
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 #ifndef __ardour_latent_h__
 #define __ardour_latent_h__
 
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
 
 namespace ARDOUR {
 
-class Latent {
+class LIBARDOUR_API Latent {
   public:
-       Latent() : _own_latency (0), _user_latency (0) {}
+       Latent() : _user_latency (0) {}
        virtual ~Latent() {}
 
        virtual framecnt_t signal_latency() const = 0;
@@ -21,11 +41,9 @@ class Latent {
                }
        }
 
-       virtual void set_latency_delay (framecnt_t val) { _own_latency = val; }
        virtual void set_user_latency (framecnt_t val) { _user_latency = val; }
 
   protected:
-       framecnt_t           _own_latency;
        framecnt_t           _user_latency;
 };