Files
pilotclient/samples/dbusserver/atcmanager.h
Roland Winklmeier 40abcf4c19 refs #42:
- Added CDBusServer into Blackcore library
- Added DBus server and client sample
2013-07-22 22:44:00 +02:00

31 lines
491 B
C++

#ifndef ATCMANAGER_H
#define ATCMANAGER_H
#include <QObject>
#include <QStringList>
class CAtcManager : public QObject
{
Q_OBJECT
QStringList m_atcList; //!< List of all controllers with their callsigns
public:
CAtcManager(QObject *parent = 0);
~CAtcManager() {}
/*!
* \brief Returns a list of all controllers with their callsigns
* \return atcList
*/
QStringList atcList() const;
signals:
public slots:
};
#endif // ATCMANAGER_H