summaryrefslogtreecommitdiffstats
path: root/libdimensionxx/dimensionxx
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-07-11 16:54:49 +0000
committerTavian Barnes <tavianator@gmail.com>2009-07-11 16:54:49 +0000
commitca84516fa80cfca35da7df71ea04423780028212 (patch)
treeb3441beb05e36698d0ed626fe055d0ea048589b3 /libdimensionxx/dimensionxx
parenta64f9e671936451d7a3a60191dcca6e37e97e585 (diff)
downloaddimension-ca84516fa80cfca35da7df71ea04423780028212.tar.xz
Make copy() a non-const method.
Diffstat (limited to 'libdimensionxx/dimensionxx')
-rw-r--r--libdimensionxx/dimensionxx/camera.hpp4
-rw-r--r--libdimensionxx/dimensionxx/cameras.hpp4
-rw-r--r--libdimensionxx/dimensionxx/object.hpp4
-rw-r--r--libdimensionxx/dimensionxx/objects.hpp8
4 files changed, 10 insertions, 10 deletions
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&);
};
}