Skip to content
Snippets Groups Projects
Commit 82edfd22 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Add using namespace std because there are too many places to fix

parent c883cfea
No related branches found
No related tags found
2 merge requests!4Resolve "Update for cppTango 9.5.x",!3Resolve "Add macOS compatibility"
Pipeline #2014 failed with stages
in 1 minute and 53 seconds
This commit is part of merge request !3. Comments created here will be created in the context of that merge request.
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
namespace TestDevice_ns namespace TestDevice_ns
{ {
/*----- PROTECTED REGION ID(TestDevice::Additional Class Declarations) ENABLED START -----*/ /*----- PROTECTED REGION ID(TestDevice::Additional Class Declarations) ENABLED START -----*/
using namespace std;
// Additional Class Declarations // Additional Class Declarations
typedef struct { typedef struct {
...@@ -53,7 +54,6 @@ enum { typeDouble, typeLong, typeBool, typeString, typeUchar}; ...@@ -53,7 +54,6 @@ enum { typeDouble, typeLong, typeBool, typeString, typeUchar};
class TestDevice : public TANGO_BASE_CLASS class TestDevice : public TANGO_BASE_CLASS
{ {
friend class CmdClass; friend class CmdClass;
/*----- PROTECTED REGION ID(TestDevice::Data Members) ENABLED START -----*/ /*----- PROTECTED REGION ID(TestDevice::Data Members) ENABLED START -----*/
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
namespace TestDevice_ns namespace TestDevice_ns
{ {
/*----- PROTECTED REGION ID(TestDevice::classes for dynamic creation) ENABLED START -----*/ /*----- PROTECTED REGION ID(TestDevice::classes for dynamic creation) ENABLED START -----*/
using namespace std;
/*----- PROTECTED REGION END -----*/ // TestDevice::classes for dynamic creation /*----- PROTECTED REGION END -----*/ // TestDevice::classes for dynamic creation
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
int main(int argc,char *argv[]) int main(int argc,char *argv[])
{ {
using namespace std;
Tango::Util *tg = NULL; Tango::Util *tg = NULL;
try try
{ {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment