From Eric Hammil, typo and spelling fixes

This commit is contained in:
Robert Osfield
2004-09-13 15:14:11 +00:00
parent 63f8935afb
commit ee67127279
18 changed files with 326 additions and 295 deletions

View File

@@ -19,14 +19,14 @@
namespace osg {
/**
* Image Stream class.
*/
* Image Stream class.
*/
class SG_EXPORT ImageStream : public Image
{
public:
ImageStream();
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
ImageStream(const ImageStream& image,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
virtual Object* cloneType() const { return new ImageStream(); }
@@ -35,7 +35,7 @@ class SG_EXPORT ImageStream : public Image
virtual const char* libraryName() const { return "osg"; }
virtual const char* className() const { return "ImageStream"; }
/** return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.*/
/** Return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. */
virtual int compare(const Image& rhs) const;
enum StreamStatus
@@ -51,7 +51,7 @@ class SG_EXPORT ImageStream : public Image
virtual void rewind() { _status=REWINDING; }
virtual void quit(bool /*wiatForThreadToExit*/ = true) {}
virtual void quit(bool /*waitForThreadToExit*/ = true) {}
StreamStatus getStatus() { return _status; }