Kstars

indifilterwheel.h
1/*
2 SPDX-FileCopyrightText: 2022 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "indiconcretedevice.h"
10
11namespace ISD
12{
13/**
14 * @class Filter
15 * Filter class handles control of INDI Filter devices.
16 *
17 * @author Jasem Mutlaq
18 */
19class FilterWheel : public ConcreteDevice
20{
22
23 public:
24 explicit FilterWheel(GenericDevice *parent) : ConcreteDevice(parent) {}
25
26 bool setPosition(uint8_t index);
27 bool setLabels(const QStringList &names);
28 bool confirmFilter();
29};
30}
ISD is a collection of INDI Standard Devices.
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.