make clangd happy

Make clangd not complain about missing imports.

To be honest, I'm not sure how it managed to even compile beforehand,
especially without including DeviceModel.hpp
This commit is contained in:
Jussi Kuokkanen 2023-07-21 18:10:37 +03:00
parent 89030d9373
commit 61136ecb0a

View File

@ -1,6 +1,7 @@
#pragma once
#include <boost/signals2.hpp>
#include <QAbstractItemView>
#include <QApplication>
#include <QComboBox>
#include <QDebug>
@ -8,6 +9,8 @@
#include <QMouseEvent>
#include <QScrollBar>
#include "DeviceModel.hpp"
// TODO: If a disabled item is clicked, the item that is highlighted get selected instead
class NodeSelector : public QComboBox {
public: