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
......@@ -34,6 +34,7 @@
namespace TestDevice_ns
{
/*----- PROTECTED REGION ID(TestDevice::Additional Class Declarations) ENABLED START -----*/
using namespace std;
// Additional Class Declarations
typedef struct {
......@@ -53,7 +54,6 @@ enum { typeDouble, typeLong, typeBool, typeString, typeUchar};
class TestDevice : public TANGO_BASE_CLASS
{
friend class CmdClass;
/*----- PROTECTED REGION ID(TestDevice::Data Members) ENABLED START -----*/
......
......@@ -30,7 +30,7 @@
namespace TestDevice_ns
{
/*----- PROTECTED REGION ID(TestDevice::classes for dynamic creation) ENABLED START -----*/
using namespace std;
/*----- PROTECTED REGION END -----*/ // TestDevice::classes for dynamic creation
......
......@@ -23,6 +23,7 @@
int main(int argc,char *argv[])
{
using namespace std;
Tango::Util *tg = NULL;
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