X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=plugins%2Fimagehl%2Fimagehl.cpp;h=479a0d99960ff9e5bebb782d1d91551a55eb69cc;hb=e4287c28bb2dafedc81c66e63951d947cfbeb225;hp=af05104432c593d315fa3ed003e89b92ef21aad3;hpb=203343b01a7ad87cb3d136689c9936ff5bc23c01;p=xonotic%2Fnetradiant.git diff --git a/plugins/imagehl/imagehl.cpp b/plugins/imagehl/imagehl.cpp index af051044..479a0d99 100644 --- a/plugins/imagehl/imagehl.cpp +++ b/plugins/imagehl/imagehl.cpp @@ -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 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 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 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(); }