mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-13 10:18:15 +02:00
26 lines
479 B
C++
26 lines
479 B
C++
//
|
|
// MenuQml.h
|
|
//
|
|
// Created by Bradley Austin Davis on 2015/04/14
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef hifi_MenuQml_h
|
|
#define hifi_MenuQml_h
|
|
|
|
#include <OffscreenQmlDialog.h>
|
|
|
|
class MenuQml : public QQuickItem
|
|
{
|
|
Q_OBJECT
|
|
QML_DIALOG_DECL
|
|
|
|
public:
|
|
MenuQml(QQuickItem *parent = 0);
|
|
};
|
|
|
|
#endif
|