Namespace cleanup

This commit is contained in:
Dan Paulat 2021-08-08 08:24:40 -05:00
parent c22db501b3
commit 5a97d99a34
20 changed files with 88 additions and 46 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#include <scwx/qt/util/gl.hpp>
#include <scwx/qt/gl/gl.hpp>
#include <QMapboxGL>
@ -8,13 +8,15 @@ namespace scwx
{
namespace qt
{
namespace map
{
class TriangleLayerImpl;
class TriangleLayer : public QMapbox::CustomLayerHostInterface
{
public:
explicit TriangleLayer(OpenGLFunctions& gl);
explicit TriangleLayer(gl::OpenGLFunctions& gl);
~TriangleLayer();
TriangleLayer(const TriangleLayer&) = delete;
@ -31,5 +33,6 @@ private:
std::unique_ptr<TriangleLayerImpl> p;
};
} // namespace map
} // namespace qt
} // namespace scwx