bool _needsRelayout;
// Nasal module.
- string _module;
+ std::string _module;
SGPropertyNode_ptr _nasal_close;
// PUI provides no way for userdata to be deleted automatically
PropertyObject (const char * name,
puObject * object,
SGPropertyNode_ptr node);
- string name;
+ std::string name;
puObject * object;
SGPropertyNode_ptr node;
};
#include <simgear/misc/sg_path.hxx>
#include <map>
-using std::map;
-class FGDeviceConfigurationMap : public map<string,SGPropertyNode_ptr> {
+class FGDeviceConfigurationMap : public std::map<std::string,SGPropertyNode_ptr> {
public:
FGDeviceConfigurationMap ( const char * relative_path, SGPropertyNode_ptr base, const char * childname );
virtual ~FGDeviceConfigurationMap();
////////////////////////////////////////////////////////////////////////
osg::Node *
-fgLoad3DModelPanel(const string &path, SGPropertyNode *prop_root)
+fgLoad3DModelPanel(const std::string &path, SGPropertyNode *prop_root)
{
osg::Node* node = SGModelLib::loadModel(path, prop_root);
if (node)
* Subsystems should not normally invoke this function directly;
* instead, they should use the SGModelLoader declared in loader.hxx.
*/
-osg::Node *fgLoad3DModelPanel( const string &path, SGPropertyNode *prop_root);
+osg::Node *fgLoad3DModelPanel( const std::string &path, SGPropertyNode *prop_root);
#endif // __MODEL_HXX
#include "awynet.hxx"
using std::sort;
-
+using std::string;
using std::cerr;
using std::endl;
// read in each remaining line of the file
while ( ! in.eof() ) {
double lat, lon;
- string ident;
+ std::string ident;
in >> lat >> lon >> ident;
if (lat > 95) break;