X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fscripting%2Fcamera.hpp;h=b35a2388c7ffed72a1e3d628eb18ad0de089d210;hb=f5ad6f69da56235de950f21de30563802c6f2e06;hp=9d65cf36695a43935ac3b09d6c53305519d141ab;hpb=79f870896e74b27bd093dca36b90e5ea3182ce92;p=supertux.git diff --git a/src/scripting/camera.hpp b/src/scripting/camera.hpp index 9d65cf366..b35a2388c 100644 --- a/src/scripting/camera.hpp +++ b/src/scripting/camera.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,20 +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 __CAMERA_H__ -#define __CAMERA_H__ +#ifndef HEADER_SUPERTUX_SCRIPTING_CAMERA_HPP +#define HEADER_SUPERTUX_SCRIPTING_CAMERA_HPP #ifndef SCRIPTING_API class Camera; typedef Camera _Camera; -#include #endif -namespace Scripting -{ +namespace scripting { class Camera { @@ -50,9 +45,15 @@ public: #ifndef SCRIPTING_API _Camera* camera; + +private: + Camera(const Camera&); + Camera& operator=(const Camera&); #endif }; } #endif + +/* EOF */