Changes due to updates in fgstream.
This commit is contained in:
parent
66f4bab7a0
commit
01f5ad20ca
1 changed files with 7 additions and 4 deletions
|
@ -156,7 +156,7 @@ int fgDEM::close () {
|
||||||
string fgDEM::next_token() {
|
string fgDEM::next_token() {
|
||||||
string token;
|
string token;
|
||||||
|
|
||||||
in->stream() >> token;
|
*in >> token;
|
||||||
|
|
||||||
// cout << " returning " + token + "\n";
|
// cout << " returning " + token + "\n";
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@ string fgDEM::next_token() {
|
||||||
int fgDEM::next_int() {
|
int fgDEM::next_int() {
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
in->stream() >> result;
|
*in >> result;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -178,7 +178,7 @@ int fgDEM::next_int() {
|
||||||
double fgDEM::next_double() {
|
double fgDEM::next_double() {
|
||||||
double result;
|
double result;
|
||||||
|
|
||||||
in->stream() >> result;
|
*in >> result;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -858,6 +858,9 @@ fgDEM::~fgDEM( void ) {
|
||||||
|
|
||||||
|
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.21 1998/11/06 14:04:32 curt
|
||||||
|
// Changes due to updates in fgstream.
|
||||||
|
//
|
||||||
// Revision 1.20 1998/10/28 19:38:20 curt
|
// Revision 1.20 1998/10/28 19:38:20 curt
|
||||||
// Elliminate some unnecessary win32 specific stuff (by Norman Vine)
|
// Elliminate some unnecessary win32 specific stuff (by Norman Vine)
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Reference in a new issue