Added namespace std

This commit is contained in:
Harry Moffat 2006-11-28 20:19:36 +00:00
parent 994c80d204
commit a0be1fcb5a
7 changed files with 8 additions and 1 deletions

View file

@ -20,6 +20,7 @@
#include "cantera/kernel/thermo/DebyeHuckel.h"
#endif
using namespace std;
using namespace Cantera;
class fileLog: public Logger {

View file

@ -27,6 +27,7 @@
#include "importCTML.h"
#endif
using namespace std;
using namespace Cantera;
class fileLog: public Logger {

View file

@ -22,6 +22,7 @@
#include "HMWSoln.h"
#endif
using namespace std;
using namespace Cantera;
class fileLog: public Logger {

View file

@ -22,6 +22,7 @@
#include "cantera/thermo.h"
#endif
using namespace std;
using namespace Cantera;
class fileLog: public Logger {

View file

@ -28,6 +28,8 @@
#include "importCTML.h"
#endif
using namespace std;
using namespace Cantera;
class fileLog: public Logger {

View file

@ -15,6 +15,7 @@
#include "HMWSoln.h"
#endif
using namespace std;
using namespace Cantera;
int CHECK_DEBUG_MODE = 0;

View file

@ -15,9 +15,9 @@
#include "HMWSoln.h"
#endif
using namespace std;
using namespace Cantera;
void printUsage() {
cout << "usage: HMW_test_1 " << endl;
cout <<" -> Everything is hardwired" << endl;