Overte C++ Documentation
EntityScriptServerLogDialog.h
1 //
2 // EntityScriptServerLogDialog.h
3 // interface/src/ui
4 //
5 // Created by Clement Brisset on 1/31/17.
6 // Copyright 2017 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_EntityScriptServerLogDialog_h
13 #define hifi_EntityScriptServerLogDialog_h
14 
15 #include "BaseLogDialog.h"
16 
17 class EntityScriptServerLogDialog : public BaseLogDialog {
18  Q_OBJECT
19 
20 public:
21  EntityScriptServerLogDialog(QWidget* parent = nullptr);
22 
23 protected:
24  QString getCurrentLog() override { return QString(); };
25 };
26 
27 #endif // hifi_EntityScriptServerLogDialog_h