mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-24 15:20:02 +02:00
12 lines
318 B
C++
12 lines
318 B
C++
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#include "File.h"
|
|
|
|
#include <iostream>
|
|
|
|
File::File(const slsDetectorDefs::fileFormat format) : format_(format) {}
|
|
|
|
File::~File() {}
|
|
|
|
slsDetectorDefs::fileFormat File::GetFileFormat() const { return format_; }
|