Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-07-24 12:29:48 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-24 12:29:48 +0400
commita0359c37506d05589bae86e4818fa653c8f281ab (patch)
tree35927f22801fa65585ac6f076abb29406189dd2a /source/blender/freestyle/intern/view_map/Interface0D.h
parentdd899939dabae68564f7a1d1994b50ee2f2cf8be (diff)
soc-2008-mxcurioni: added (without testing) the following classes: BBox, SShape, ViewShape. Also corrected a few typos (Get#->get#).
Diffstat (limited to 'source/blender/freestyle/intern/view_map/Interface0D.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/Interface0D.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/freestyle/intern/view_map/Interface0D.h b/source/blender/freestyle/intern/view_map/Interface0D.h
index 40027e13d80..eaa6d31829b 100755
--- a/source/blender/freestyle/intern/view_map/Interface0D.h
+++ b/source/blender/freestyle/intern/view_map/Interface0D.h
@@ -163,7 +163,7 @@ public:
//
//////////////////////////////////////////////////
-class Interface0DIteratorNested : Iterator
+class Interface0DIteratorNested : public Iterator
{
public:
@@ -215,7 +215,7 @@ public:
* where \a it1 and \a it2 are 2 Interface0DIterator.
* Otherwise, incrementing \a it1 will also increment \a it2.
*/
-class Interface0DIterator
+class Interface0DIterator : public Iterator
{
public:
@@ -248,7 +248,7 @@ public:
}
/*! Returns the string "Interface0DIterator". */
- string getExactTypeName() const {
+ virtual string getExactTypeName() const {
if (!_iterator)
return "Interface0DIterator";
return _iterator->getExactTypeName() + "Proxy";
@@ -306,12 +306,12 @@ public:
}
/*! Increments. */
- void increment() {
+ virtual void increment() {
_iterator->increment();
}
/*! Decrements. */
- void decrement() {
+ virtual void decrement() {
_iterator->decrement();
}
@@ -319,14 +319,14 @@ public:
* first of the 1D element containing the points over
* which we're iterating.
*/
- bool isBegin() const {
+ virtual bool isBegin() const {
return _iterator->isBegin();
}
/*! Returns true if the pointed Interface0D is after the
* after the last point of the 1D element we're iterating from.
*/
- bool isEnd() const {
+ virtual bool isEnd() const {
return _iterator->isEnd();
}