Avoid "using..." in header files.
This commit is contained in:
parent
5fb6614c23
commit
5f1435b4fd
3 changed files with 4 additions and 3 deletions
|
@ -34,6 +34,7 @@
|
|||
using simgear::PropertyList;
|
||||
using std::cout;
|
||||
using std::endl;
|
||||
using std::map;
|
||||
|
||||
FGEventSetting::FGEventSetting( SGPropertyNode_ptr base ) :
|
||||
value(0.0)
|
||||
|
|
|
@ -34,9 +34,10 @@
|
|||
#include <Navaids/navlist.hxx>
|
||||
#include <Navaids/procedure.hxx>
|
||||
|
||||
|
||||
#include "NasalSys.hxx"
|
||||
|
||||
using std::map;
|
||||
|
||||
static FGNasalSys* nasalSys = 0;
|
||||
|
||||
// Listener class for loading Nasal modules on demand
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#include <simgear/threads/SGQueue.hxx>
|
||||
|
||||
#include <map>
|
||||
using std::map;
|
||||
|
||||
|
||||
class FGNasalScript;
|
||||
|
@ -139,7 +138,7 @@ private:
|
|||
};
|
||||
|
||||
// Listener
|
||||
map<int, FGNasalListener *> _listener;
|
||||
std::map<int, FGNasalListener *> _listener;
|
||||
vector<FGNasalListener *> _dead_listener;
|
||||
static int _listenerId;
|
||||
|
||||
|
|
Loading…
Reference in a new issue