11 lines
215 B
C++
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;
|
|
}
|