Skip to content
Snippets Groups Projects
Commit be837c57 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Explicitely delete copy constructor and assignment operator for DetectorContext

parent e0334559
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,10 @@ class BA_CORE_API_ DetectorContext
{
public:
DetectorContext(const IDetector2D* detector);
DetectorContext(const DetectorContext& other) = delete;
DetectorContext& operator=(const DetectorContext& other) = delete;
size_t numberOfSimulationElements() const;
std::unique_ptr<IPixel> createPixel(size_t element_index) const;
......
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