]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/os_loop.hpp
Win32 skins: reorder includes to fix warnings
[vlc] / modules / gui / skins2 / src / os_loop.hpp
index 5b29b0ed67c0f5b94401dc2748ef52c00bcedfa5..44ef940b544ee7c36a3a7d96d602fa506553a80d 100644 (file)
@@ -1,11 +1,11 @@
 /*****************************************************************************
  * os_loop.hpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN (Centrale Réseaux) and its contributors
+ * Copyright (C) 2003 the VideoLAN team
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * 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
@@ -17,9 +17,9 @@
  * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifndef OS_LOOP_HPP
 /// Abstract class for the main event loop
 class OSLoop: public SkinObject
 {
-    public:
-        virtual ~OSLoop() {}
+public:
+    virtual ~OSLoop() { }
 
-        /// Enter the main loop
-        virtual void run() = 0;
+    /// Enter the main loop
+    virtual void run() = 0;
 
-        /// Exit the main loop
-        virtual void exit() = 0;
+    /// Exit the main loop
+    virtual void exit() = 0;
 
-    protected:
-        OSLoop( intf_thread_t *pIntf ): SkinObject( pIntf ) {}
+protected:
+    OSLoop( intf_thread_t *pIntf ): SkinObject( pIntf ) { }
 };