IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 07d0dbb0 authored by Dominik Baack's avatar Dominik Baack Committed by Ralf Ulrich
Browse files

Added time measureing class

fixed unit tests
fixed some incosistencys
parent 3f97dc64
No related branches found
No related tags found
No related merge requests found
...@@ -34,13 +34,11 @@ namespace corsika::process { ...@@ -34,13 +34,11 @@ namespace corsika::process {
======= =======
class InteractionProcess { class InteractionProcess {
private: private:
protected:
protected: public:
using _TDerived = TDerived; using _TDerived = TDerived;
public:
TDerived& GetRef() { return static_cast<TDerived&>(*this); } TDerived& GetRef() { return static_cast<TDerived&>(*this); }
const TDerived& GetRef() const { return static_cast<const TDerived&>(*this); } const TDerived& GetRef() const { return static_cast<const TDerived&>(*this); }
>>>>>>> renamed base process templates >>>>>>> renamed base process templates
......
...@@ -35,9 +35,9 @@ namespace corsika::process { ...@@ -35,9 +35,9 @@ namespace corsika::process {
private: private:
protected: protected:
public:
using _TDerived = TDerived; using _TDerived = TDerived;
public:
TDerived& GetRef() { return static_cast<TDerived&>(*this); } TDerived& GetRef() { return static_cast<TDerived&>(*this); }
const TDerived& GetRef() const { return static_cast<const TDerived&>(*this); } const TDerived& GetRef() const { return static_cast<const TDerived&>(*this); }
......
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