mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-07 18:38:36 +02:00
22 lines
436 B
C++
22 lines
436 B
C++
#ifndef __NULL_SETTINGS_H_
|
|
#define __NULL_SETTINGS_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "icsneo/device/idevicesettings.h"
|
|
#include "icsneo/communication/communication.h"
|
|
#include <memory>
|
|
|
|
namespace icsneo {
|
|
|
|
class NullSettings : public IDeviceSettings {
|
|
public:
|
|
// Calls the protected base constructor with "createInoperableSettings"
|
|
NullSettings(Device* device) : IDeviceSettings(nullptr, device) {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |