File indexing completed on 2024-03-24 15:17:14

0001 /*
0002     SPDX-FileCopyrightText: 2022 Jasem Mutlaq <mutlaqja@ikarustech.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "indiconcretedevice.h"
0010 
0011 namespace ISD
0012 {
0013 /**
0014  * @class Detector
0015  * Detector class handles control of INDI Detector devices.
0016  *
0017  * @author Jasem Mutlaq
0018  */
0019 class Detector : public ConcreteDevice
0020 {
0021         Q_OBJECT
0022 
0023     public:
0024         explicit Detector(GenericDevice *parent) : ConcreteDevice(parent) {}
0025 };
0026 }