Files
Jungfraujoch/common/ROIElement.cpp
2024-03-31 23:08:19 +02:00

11 lines
215 B
C++

// Copyright (2019-2024) Paul Scherrer Institute
#include "ROIElement.h"
ROIElement::ROIElement(const std::string &in_name)
: name(in_name) {}
std::string ROIElement::GetName() const {
return name;
}