mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 03:44:27 +02:00
29 lines
613 B
C++
29 lines
613 B
C++
//
|
|
// GVRMainWindow.h
|
|
// gvr-interface/src
|
|
//
|
|
// Created by Stephen Birarda on 1/20/14.
|
|
// Copyright 2013 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
|
|
//
|
|
|
|
#ifndef hifi_GVRMainWindow_h
|
|
#define hifi_GVRMainWindow_h
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
|
|
class QVBoxLayout;
|
|
|
|
class GVRMainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
public:
|
|
GVRMainWindow(QWidget* parent = 0);
|
|
public slots:
|
|
void showAddressBar();
|
|
private:
|
|
QVBoxLayout* _mainLayout;
|
|
};
|
|
|
|
#endif // hifi_GVRMainWindow_h
|