Skip to content

Commit

Permalink
Merge pull request #40 from ASNeG/39_remove_using_from_header_files
Browse files Browse the repository at this point in the history
remove using from header file
  • Loading branch information
huebl committed Jun 4, 2021
2 parents df8a853 + 796531c commit 7d60ac8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/ASNeG-Demo/Library/DemoLibrary.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2015-2020 Kai Huebl (kai@huebl-sgh.de)
Copyright 2015-2021 Kai Huebl (kai@huebl-sgh.de)
Lizenziert gemäß Apache Licence Version 2.0 (die „Lizenz“); Nutzung dieser
Datei nur in Übereinstimmung mit der Lizenz erlaubt.
Expand All @@ -23,6 +23,8 @@
#include <iostream>
#include "BuildConfig.h"

using namespace OpcUaStackServer;

namespace OpcUaServerApplicationDemo
{

Expand Down
7 changes: 2 additions & 5 deletions src/ASNeG-Demo/Library/DemoLibrary.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2015-2020 Kai Huebl (kai@huebl-sgh.de)
Copyright 2015-2021 Kai Huebl (kai@huebl-sgh.de)
Lizenziert gemäß Apache Licence Version 2.0 (die „Lizenz“); Nutzung dieser
Datei nur in Übereinstimmung mit der Lizenz erlaubt.
Expand Down Expand Up @@ -38,14 +38,11 @@
#include "ASNeG-Demo/Library/VariableType.h"
#include "ASNeG-Demo/Library/ObjectType.h"

using namespace OpcUaStackCore;
using namespace OpcUaStackServer;

namespace OpcUaServerApplicationDemo
{

class DemoLibrary
: public ApplicationIf
: public OpcUaStackServer::ApplicationIf
{
public:
DemoLibrary(void);
Expand Down

0 comments on commit 7d60ac8

Please sign in to comment.