mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 12:57:59 +02:00
Fix non self-sufficient headers.
This commit is contained in:
parent
3386e5042f
commit
d179b91f69
4 changed files with 11 additions and 6 deletions
|
@ -9,13 +9,15 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#include "OctreeEntitiesFileParser.h"
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
|
|
||||||
#include <QUuid>
|
#include <QUuid>
|
||||||
#include <QJsonDocument>
|
#include <QJsonDocument>
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
|
|
||||||
#include "OctreeEntitiesFileParser.h"
|
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,12 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <limits>
|
|
||||||
#include "GLMHelpers.h"
|
#include "GLMHelpers.h"
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
#include <glm/gtc/matrix_transform.hpp>
|
#include <glm/gtc/matrix_transform.hpp>
|
||||||
|
|
||||||
#include "NumericalConstants.h"
|
#include "NumericalConstants.h"
|
||||||
|
|
||||||
const vec3 Vectors::UNIT_X{ 1.0f, 0.0f, 0.0f };
|
const vec3 Vectors::UNIT_X{ 1.0f, 0.0f, 0.0f };
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
//
|
//
|
||||||
// ResourceAccessMonitor.h
|
// ResourceRequestObserver.cpp
|
||||||
// libraries/networking/src
|
// libraries/shared/src
|
||||||
//
|
//
|
||||||
// Created by Kerry Ivan Kurian on 9/27/18.
|
// Created by Kerry Ivan Kurian on 9/27/18.
|
||||||
// Copyright 2018 High Fidelity, Inc.
|
// Copyright 2018 High Fidelity, Inc.
|
||||||
|
@ -9,12 +9,12 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#include "ResourceRequestObserver.h"
|
||||||
|
|
||||||
#include <QJsonArray>
|
#include <QJsonArray>
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
#include "ResourceRequestObserver.h"
|
|
||||||
|
|
||||||
void ResourceRequestObserver::update(const QUrl& requestUrl,
|
void ResourceRequestObserver::update(const QUrl& requestUrl,
|
||||||
const qint64 callerId,
|
const qint64 callerId,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
//
|
//
|
||||||
// ResourceRequestObserver.h
|
// ResourceRequestObserver.h
|
||||||
// libraries/commerce/src
|
// libraries/shared/src
|
||||||
//
|
//
|
||||||
// Created by Kerry Ivan Kurian on 9/27/18.
|
// Created by Kerry Ivan Kurian on 9/27/18.
|
||||||
// Copyright 2018 High Fidelity, Inc.
|
// Copyright 2018 High Fidelity, Inc.
|
||||||
|
|
Loading…
Reference in a new issue