]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/os_factory.cpp
Copyright fixes
[vlc] / modules / gui / skins2 / src / os_factory.cpp
index deef1a6e7a1d628c64dd6cc5052f2d1c6ceb4ed6..dc9770a73b9a3fdb4d55dfb88aef356a7d66bec4 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * os_factory.cpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: os_factory.cpp,v 1.1 2004/01/03 23:31:33 asmax Exp $
+ * Copyright (C) 2003 VideoLAN (Centrale Réseaux) and its contributors
+ * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  *          Olivier Teulière <ipkiss@via.ecp.fr>
@@ -28,6 +28,8 @@
 #include "../x11/x11_factory.hpp"
 #elif defined WIN32_SKINS
 #include "../win32/win32_factory.hpp"
+#elif defined MACOSX_SKINS
+#include "../macosx/macosx_factory.hpp"
 #endif
 
 OSFactory *OSFactory::instance( intf_thread_t *pIntf )
@@ -39,6 +41,8 @@ OSFactory *OSFactory::instance( intf_thread_t *pIntf )
         pOsFactory = new X11Factory( pIntf );
 #elif defined WIN32_SKINS
         pOsFactory = new Win32Factory( pIntf );
+#elif defined MACOSX_SKINS
+        pOsFactory = new MacOSXFactory( pIntf );
 #else
 #error "No OSFactory implementation !"
 #endif