]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/imagehl/imagehl.cpp
Merge branch 'master' into divVerent/farplanedist-sky-fix
[xonotic/netradiant.git] / plugins / imagehl / imagehl.cpp
index af05104432c593d315fa3ed003e89b92ef21aad3..479a0d99960ff9e5bebb782d1d91551a55eb69cc 100644 (file)
@@ -1,23 +1,23 @@
 /*
-Copyright (C) 2001-2006, William Joseph.
-All Rights Reserved.
+   Copyright (C) 2001-2006, William Joseph.
+   All Rights Reserved.
 
-This file is part of GtkRadiant.
+   This file is part of GtkRadiant.
 
-GtkRadiant 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.
+   GtkRadiant 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.
 
-GtkRadiant 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.
+   GtkRadiant 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 GtkRadiant; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-*/
+   You should have received a copy of the GNU General Public License
+   along with GtkRadiant; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
 
 #include "imagehl.h"
 
@@ -38,19 +38,17 @@ class ImageDependencies : public GlobalFileSystemModuleRef
 
 class ImageHLWAPI
 {
-  _QERPlugImageTable m_imagehlw;
+_QERPlugImageTable m_imagehlw;
 public:
-  typedef _QERPlugImageTable Type;
-  STRING_CONSTANT(Name, "hlw");
-
-  ImageHLWAPI()
-  {
-    m_imagehlw.loadImage = LoadHLW;
-  }
-  _QERPlugImageTable* getTable()
-  {
-    return &m_imagehlw;
-  }
+typedef _QERPlugImageTable Type;
+STRING_CONSTANT( Name, "hlw" );
+
+ImageHLWAPI(){
+       m_imagehlw.loadImage = LoadHLW;
+}
+_QERPlugImageTable* getTable(){
+       return &m_imagehlw;
+}
 };
 
 typedef SingletonModule<ImageHLWAPI, ImageDependencies> ImageHLWModule;
@@ -60,19 +58,17 @@ ImageHLWModule g_ImageHLWModule;
 
 class ImageMipAPI
 {
-  _QERPlugImageTable m_imagemip;
+_QERPlugImageTable m_imagemip;
 public:
-  typedef _QERPlugImageTable Type;
-  STRING_CONSTANT(Name, "mip");
-
-  ImageMipAPI()
-  {
-    m_imagemip.loadImage = LoadMIP;
-  }
-  _QERPlugImageTable* getTable()
-  {
-    return &m_imagemip;
-  }
+typedef _QERPlugImageTable Type;
+STRING_CONSTANT( Name, "mip" );
+
+ImageMipAPI(){
+       m_imagemip.loadImage = LoadMIP;
+}
+_QERPlugImageTable* getTable(){
+       return &m_imagemip;
+}
 };
 
 typedef SingletonModule<ImageMipAPI, ImageDependencies> ImageMipModule;
@@ -82,19 +78,17 @@ ImageMipModule g_ImageMipModule;
 
 class ImageSpriteAPI
 {
-  _QERPlugImageTable m_imagesprite;
+_QERPlugImageTable m_imagesprite;
 public:
-  typedef _QERPlugImageTable Type;
-  STRING_CONSTANT(Name, "spr");
-
-  ImageSpriteAPI()
-  {
-    m_imagesprite.loadImage = LoadIDSP;
-  }
-  _QERPlugImageTable* getTable()
-  {
-    return &m_imagesprite;
-  }
+typedef _QERPlugImageTable Type;
+STRING_CONSTANT( Name, "spr" );
+
+ImageSpriteAPI(){
+       m_imagesprite.loadImage = LoadIDSP;
+}
+_QERPlugImageTable* getTable(){
+       return &m_imagesprite;
+}
 };
 
 typedef SingletonModule<ImageSpriteAPI, ImageDependencies> ImageSpriteModule;
@@ -103,11 +97,10 @@ ImageSpriteModule g_ImageSpriteModule;
 
 
 
-extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules(ModuleServer& server)
-{
-  initialiseModule(server);
+extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
+       initialiseModule( server );
 
-  g_ImageHLWModule.selfRegister();
-  g_ImageMipModule.selfRegister();
-  g_ImageSpriteModule.selfRegister();
+       g_ImageHLWModule.selfRegister();
+       g_ImageMipModule.selfRegister();
+       g_ImageSpriteModule.selfRegister();
 }