Skip to content

Commit

Permalink
Fix missing headers, other small source problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Oct 5, 2023
1 parent f258271 commit 3fbeab9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Source/CesiumRuntime/Private/CesiumTileExcluderAdapter.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include "CesiumTileExcluderAdapter.h"
#include "Cesium3DTilesSelection/Tile.h"
#include "CesiumGeoreference.h"
#include "VecMath.h"

bool CesiumTileExcluderAdapter::shouldExclude(
Expand Down
6 changes: 6 additions & 0 deletions Source/CesiumRuntime/Private/CesiumTileExcluderAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
#include "CesiumTileExcluder.h"
#include <Cesium3DTilesSelection/ITileExcluder.h>

class ACesiumGeoreference;

namespace Cesium3DTilesSelection {
class Tile;
}

class CesiumTileExcluderAdapter : public Cesium3DTilesSelection::ITileExcluder {
virtual bool shouldExclude(
const Cesium3DTilesSelection::Tile& tile) const noexcept override;
Expand Down
2 changes: 0 additions & 2 deletions Source/CesiumRuntime/Private/Tests/CesiumGltfSpecUtility.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#pragma once

#include "CesiumGltfSpecUtility.h"

using namespace CesiumGltf;
Expand Down

0 comments on commit 3fbeab9

Please sign in to comment.