You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
297 B
C++
22 lines
297 B
C++
#include "abstractwindowinterface.h"
|
|
|
|
#include <QObject>
|
|
#include <QQuickWindow>
|
|
|
|
namespace Latte {
|
|
|
|
AbstractWindowInterface::AbstractWindowInterface(QQuickWindow *const view, QObject *parent)
|
|
: QObject(parent), m_view(view)
|
|
{
|
|
|
|
}
|
|
|
|
AbstractWindowInterface::~AbstractWindowInterface()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|