Removed include <iostream> where possible, replacing with istream or ostream and changing

std::cout/cerr to osg::notify().
This commit is contained in:
Robert Osfield
2004-03-03 13:27:21 +00:00
parent f3bee81e7a
commit 4aa7afedf3
33 changed files with 705 additions and 704 deletions

View File

@@ -827,9 +827,9 @@ void DrawShapeVisitor::apply(const Capsule& capsule)
glPopMatrix();
}
void DrawShapeVisitor::apply(const InfinitePlane& plane)
void DrawShapeVisitor::apply(const InfinitePlane&)
{
std::cout << "draw a Plane ("<<plane<<") "<<std::endl;
notify(NOTICE)<<"Warning: DrawShapeVisitor::apply(const InfinitePlane& plane) not yet implementated. "<<std::endl;
}
void DrawShapeVisitor::apply(const TriangleMesh& mesh)
@@ -1661,9 +1661,9 @@ void PrimitiveShapeVisitor::apply(const Capsule& /*capsule*/)
#endif
}
void PrimitiveShapeVisitor::apply(const InfinitePlane& plane)
void PrimitiveShapeVisitor::apply(const InfinitePlane&)
{
std::cout << "Primitive a Plane ("<<plane<<") "<<std::endl;
notify(NOTICE)<<"Warning: PrimitiveShapeVisitor::apply(const InfinitePlane& plane) not yet implementated. "<<std::endl;
}
void PrimitiveShapeVisitor::apply(const TriangleMesh& mesh)