try just removing all PLATFORM_WINDOWS conditionals in ipmidi code to see if it will...
[ardour.git] / libs / surfaces / mackie / timer.h
index 0e19062911a48ed7c9c42d8d87c18e7c3fbe94c3..423b962ce849b85114b0573bcdda884a92c7757d 100644 (file)
@@ -1,16 +1,16 @@
 /*
   Copyright (C) 1998, 1999, 2000, 2007 John Anderson
-  
+
   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library 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 Library General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
@@ -25,6 +25,8 @@
 #include <sys/time.h>
 #endif
 
+namespace ArdourSurface {
+
 namespace Mackie
 {
 
@@ -34,7 +36,7 @@ namespace Mackie
 class Timer
 {
 public:
-       
+
        /**
                start the timer running if true, or just create the
                object if false.
@@ -44,7 +46,7 @@ public:
                if ( shouldStart )
                        start();
        }
-       
+
        /**
                Start the timer running. Return the current timestamp, in milliseconds
        */
@@ -79,7 +81,7 @@ public:
                        return (_stop - _start) / 1000;
                }
        }
-       
+
        /**
                Call stop and then start. Return the value from stop.
        */
@@ -96,6 +98,7 @@ private:
        bool running;
 };
 
-}
+} // Mackie namespace
+} // ArdourSurface namespace
 
 #endif