mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-30 01:40:04 +02:00

* rxr src files and classes (detectordata, ZmqSocket) added to sls namespace * moving defines inside namespace * moving defines inside namespace, added helpdacs to namespace * added namespace to gui * gui also updated * removed unnecessary sls:: when already in sls namespace for slsDetectoSoftware, receverSoftware, slsDetectorGui and slsSupportlib
16 lines
355 B
C++
16 lines
355 B
C++
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#include "File.h"
|
|
|
|
#include <iostream>
|
|
|
|
namespace sls {
|
|
|
|
File::File(const slsDetectorDefs::fileFormat format) : format_(format) {}
|
|
|
|
File::~File() {}
|
|
|
|
slsDetectorDefs::fileFormat File::GetFileFormat() const { return format_; }
|
|
|
|
} // namespace sls
|