X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fvideo%2Ftexture.hpp;h=589fd95921936a005343961349428d93c130bea3;hb=c1277f5b7db9f55d1d28f658b4e804f32b76f0ce;hp=6e4c462fec9d84e14f40d7ebc5ae1ed370d4b8cf;hpb=20efd7620620892d92b1c7df124c3a0c8df22a82;p=supertux.git diff --git a/src/video/texture.hpp b/src/video/texture.hpp index 6e4c462fe..589fd9592 100644 --- a/src/video/texture.hpp +++ b/src/video/texture.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// 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 the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// 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 +// the Free Software Foundation, either version 3 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 @@ -14,18 +12,17 @@ // 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-1307, USA. +// along with this program. If not, see . -#ifndef __TEXTURE_HPP__ -#define __TEXTURE_HPP__ +#ifndef HEADER_SUPERTUX_VIDEO_TEXTURE_HPP +#define HEADER_SUPERTUX_VIDEO_TEXTURE_HPP #include #include #include -#include "texture_manager.hpp" +#include "video/texture_manager.hpp" /// bitset for drawing effects enum DrawingEffect { @@ -86,6 +83,12 @@ private: { texture_manager->release(this); } + +private: + Texture(const Texture&); + Texture& operator=(const Texture&); }; #endif + +/* EOF */