Overte C++ Documentation
DomainConnectionDialog.h
1 //
2 // DomainConnectionDialog.h
3 // interface/src/ui
4 //
5 // Created by Stephen Birarda on 05/26/15.
6 // Copyright 2015 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_DomainConnectionDialog_h
13 #define hifi_DomainConnectionDialog_h
14 
15 #pragma once
16 
17 #include <QtWidgets/QDialog>
18 
19 class DomainConnectionDialog : public QDialog {
20  Q_OBJECT
21 public:
22  DomainConnectionDialog(QWidget* parent);
23 };
24 
25 #endif // hifi_DomainConnectionDialog_h