From Bob Kuehne, add usage of version number to differentiate between

rev's of the LOD.
This commit is contained in:
Robert Osfield
2004-07-20 07:46:05 +00:00
parent aa833acfd3
commit aed65903db
4 changed files with 12 additions and 2 deletions

View File

@@ -113,6 +113,11 @@ bool DataInputStream::readBool(){
return c!=0;
}
unsigned int DataInputStream::getVersion()
{
return( _version );
}
char DataInputStream::readChar(){
char c;
_istream->read(&c, CHARSIZE);