eismultiplexer-qt/external/QCodeEditor/include/internal/QPythonCompleter.hpp
Carl Philipp Klemm 2f3069a388 add QCodeEditor
2025-10-13 12:40:46 +02:00

24 lines
384 B
C++

#pragma once
// Qt
#include <QCompleter> // Required for inheritance
/**
* @brief Class, that describes completer with
* glsl specific types and functions.
*/
class QPythonCompleter : public QCompleter
{
Q_OBJECT
public:
/**
* @brief Constructor.
* @param parent Pointer to parent QObject.
*/
explicit QPythonCompleter(QObject* parent=nullptr);
};