IAP GITLAB

Skip to content
Snippets Groups Projects
Commit bf82fa38 authored by ralfulrich's avatar ralfulrich
Browse files

cleanup namespace injections

parent 0017f855
No related branches found
No related tags found
No related merge requests found
...@@ -31,9 +31,6 @@ ...@@ -31,9 +31,6 @@
#include <corsika/logging/NoSink.h> #include <corsika/logging/NoSink.h>
#include <corsika/logging/Sink.h> #include <corsika/logging/Sink.h>
using namespace std;
using namespace boost;
namespace corsika::logging { namespace corsika::logging {
/** /**
......
set ( set (
CORSIKAstackinterface_HEADERS CORSIKAstackinterface_HEADERS
Stack.h Stack.h
StackView.h
StackIteratorInterface.h StackIteratorInterface.h
ParticleBase.h ParticleBase.h
) )
......
#ifndef _include_corsika_stack_stackview_h_
#define _include_corsika_stack_stackview_h_
namespace corsika::stack {
template<typename Stack>
class StackView : puclic Stack {
public:
private:
std::vector<unsigned int> fIndices;
};
}
#endif
...@@ -90,7 +90,6 @@ namespace corsika::process { ...@@ -90,7 +90,6 @@ namespace corsika::process {
using std::cout; using std::cout;
using std::endl; using std::endl;
// using namespace corsika::io;
using namespace corsika::units::si; using namespace corsika::units::si;
// name? also makes EM particles stable // name? also makes EM particles stable
......
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
#include <stdexcept> #include <stdexcept>
#include <utility> #include <utility>
using namespace corsika;
namespace corsika::process { namespace corsika::process {
namespace tracking_line { namespace tracking_line {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment