From ca84516fa80cfca35da7df71ea04423780028212 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 11 Jul 2009 16:54:49 +0000 Subject: Make copy() a non-const method. --- libdimensionxx/dimensionxx/camera.hpp | 4 ++-- libdimensionxx/dimensionxx/cameras.hpp | 4 ++-- libdimensionxx/dimensionxx/object.hpp | 4 ++-- libdimensionxx/dimensionxx/objects.hpp | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) (limited to 'libdimensionxx/dimensionxx') diff --git a/libdimensionxx/dimensionxx/camera.hpp b/libdimensionxx/dimensionxx/camera.hpp index 049f237..9b717ff 100644 --- a/libdimensionxx/dimensionxx/camera.hpp +++ b/libdimensionxx/dimensionxx/camera.hpp @@ -36,7 +36,7 @@ namespace Dimension virtual Line ray(const Canvas& canvas, unsigned int x, unsigned int y); // Shallow-copy a derived camera - virtual Camera* copy() const = 0; + virtual Camera* copy() = 0; // Access the wrapped C camera. dmnsn_camera* dmnsn(); @@ -46,7 +46,7 @@ namespace Dimension // No-op Camera(); // Shallow-copy - Camera(const Camera& camera); + Camera(Camera& camera); // Wrap an existing camera explicit Camera(dmnsn_camera* camera); diff --git a/libdimensionxx/dimensionxx/cameras.hpp b/libdimensionxx/dimensionxx/cameras.hpp index 7f70af7..1764ac5 100644 --- a/libdimensionxx/dimensionxx/cameras.hpp +++ b/libdimensionxx/dimensionxx/cameras.hpp @@ -37,11 +37,11 @@ namespace Dimension void trans(const Matrix& trans); // Shallow-copy the camera - Camera* copy() const; + Camera* copy(); private: // Copying prohibited, but used internally - Perspective_Camera(const Perspective_Camera& camera); + Perspective_Camera(Perspective_Camera& camera); Perspective_Camera& operator=(const Perspective_Camera&); }; } diff --git a/libdimensionxx/dimensionxx/object.hpp b/libdimensionxx/dimensionxx/object.hpp index 8b5d3c9..8283c9c 100644 --- a/libdimensionxx/dimensionxx/object.hpp +++ b/libdimensionxx/dimensionxx/object.hpp @@ -41,7 +41,7 @@ namespace Dimension virtual bool inside(const Vector& point); // Shallow-copy a derived object - virtual Object* copy() const = 0; + virtual Object* copy() = 0; // Access the wrapped C object dmnsn_object* dmnsn(); @@ -51,7 +51,7 @@ namespace Dimension // No-op Object(); // Shallow copy - Object(const Object& object); + Object(Object& object); // Wrap an existing object. explicit Object(dmnsn_object* object); diff --git a/libdimensionxx/dimensionxx/objects.hpp b/libdimensionxx/dimensionxx/objects.hpp index f9c20af..f86b2b3 100644 --- a/libdimensionxx/dimensionxx/objects.hpp +++ b/libdimensionxx/dimensionxx/objects.hpp @@ -33,11 +33,11 @@ namespace Dimension ~Sphere(); // Shallow-copy the sphere - Object* copy() const; + Object* copy(); private: // Copying prohibited, but used internally - Sphere(const Sphere& sphere); + Sphere(Sphere& sphere); Sphere& operator=(const Sphere&); }; @@ -49,11 +49,11 @@ namespace Dimension ~Cube(); // Shallow-copy the cube - Object* copy() const; + Object* copy(); private: // Copying prohibited, but used internally - Cube(const Cube& cube); + Cube(Cube& cube); Cube& operator=(const Cube&); }; } -- cgit v1.2.3