#include <Debug/fg_debug.h>
#include <Main/options.hxx>
#include <Misc/fgstream.hxx>
-#include <Misc/stopwatch.hxx>
#include "simple.hxx"
// build the path name to the airport file
string path = current_options.get_fg_root() + "/Airports/" + file;
- StopWatch t;
airports.erase( airports.begin(), airports.end() );
fgPrintf( FG_GENERAL, FG_EXIT, "Cannot open file: %s\n",
path.c_str());
- t.start();
-
/*
// We can use the STL copy algorithm because the input
// file doesn't contain and comments or blank lines.
in.eat_comments();
while ( ! in.eof() )
{
- in.stream() >> a.id >> a.longitude >> a.latitude >> a.elevation;
+ in.stream() >> a;
airports.insert(a);
in.eat_comments();
}
- t.stop();
-
- fgPrintf( FG_GENERAL, FG_INFO, "Loaded %d airports in %f seconds\n",
- airports.size(), t.elapsedSeconds() );
-
return 1;
}
-// class fgAIRPORT_eq : public unary_function<fgAIRPORT,bool>
-// {
-// public:
-// explicit fgAIRPORT_eq( const string& id ) : _id(id) {}
-// bool operator () ( const fgAIRPORT& a ) const { return a.id == _id; }
-// private:
-// string _id;
-// };
// search for the specified id
bool
fgAIRPORTS::search( const string& id, fgAIRPORT* a ) const
{
- StopWatch t;
- t.start();
-// const_iterator it = find_if( airports.begin(),
-// airports.end(), fgAIRPORT_eq(id) );
-
const_iterator it = airports.find( fgAIRPORT(id) );
- t.stop();
if ( it != airports.end() )
{
*a = *it;
- cout << "Found " << id << " in " << t.elapsedSeconds()
- << " seconds" << endl;
return true;
}
else
// $Log$
+// Revision 1.7 1998/09/08 21:38:41 curt
+// Changes by Bernie Bright.
+//
// Revision 1.6 1998/09/03 21:25:02 curt
// tweaked in data file comment handling.
//
#include <string> // Standard C++ string library
#include <set>
+#include "Include/fg_stl_config.h"
#ifdef NEEDNAMESPACESTD
using namespace std;
class fgAIRPORTS {
public:
+#ifdef _FG_NO_DEFAULT_TEMPLATE_ARGS
+ typedef set< fgAIRPORT, less< fgAIRPORT > > container;
+#else
typedef set< fgAIRPORT > container;
+#endif
typedef container::iterator iterator;
typedef container::const_iterator const_iterator;
// $Log$
+// Revision 1.4 1998/09/08 21:38:43 curt
+// Changes by Bernie Bright.
+//
// Revision 1.3 1998/09/01 19:02:54 curt
// Changes contributed by Bernie Bright <bbright@c031.aone.net.au>
// - The new classes in libmisc.tgz define a stream interface into zlib.