Overte C++ Documentation
RectangleOverlay.h
1 //
2 // Created by Bradley Austin Davis on 2016/01/27
3 // Copyright 2013-2016 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 
9 #ifndef hifi_RectangleOverlay_h
10 #define hifi_RectangleOverlay_h
11 
12 #include "QmlOverlay.h"
13 
14 class RectangleOverlay : public QmlOverlay {
15 public:
16  static QString const TYPE;
17  virtual QString getType() const override { return TYPE; }
18  static QUrl const URL;
19 
20  RectangleOverlay();
21  RectangleOverlay(const RectangleOverlay* RectangleOverlay);
22 
23  virtual RectangleOverlay* createClone() const override;
24 };
25 
26 #endif // hifi_RectangleOverlay_h