cesium-native 0.46.0
Loading...
Searching...
No Matches
IModelMeshExportContentLoaderFactory.h
1#include "TilesetContentLoader.h"
2#include "TilesetContentLoaderFactory.h"
3#include "TilesetContentLoaderResult.h"
4#include "TilesetExternals.h"
5
6#include <CesiumAsync/Future.h>
7
8#include <string>
9
10namespace Cesium3DTilesSelection {
19public:
30 const std::string& iModelId,
31 const std::optional<std::string>& exportId,
32 const std::string& iTwinAccessToken);
33
34 virtual CesiumAsync::Future<
38 const TilesetExternals& externals,
39 const TilesetOptions& tilesetOptions,
40 const AuthorizationHeaderChangeListener& headerChangeListener) override;
41
42 virtual bool isValid() const override;
43
44private:
45 std::string _iModelId;
46 std::optional<std::string> _exportId;
47 std::string _iTwinAccessToken;
48};
49} // namespace Cesium3DTilesSelection
A factory for creating a TilesetContentLoader from data from the iModel Mesh Export API.
IModelMeshExportContentLoaderFactory(const std::string &iModelId, const std::optional< std::string > &exportId, const std::string &iTwinAccessToken)
Creates a new factory for loading content from an iModel Mesh Export.
virtual CesiumAsync::Future< Cesium3DTilesSelection::TilesetContentLoaderResult< Cesium3DTilesSelection::TilesetContentLoader > > createLoader(const TilesetExternals &externals, const TilesetOptions &tilesetOptions, const AuthorizationHeaderChangeListener &headerChangeListener) override
Creates an instance of the loader corresponding to this factory.
virtual bool isValid() const override
Returns true if a valid TilesetContentLoader can be constructed from this factory.
std::function< void(const std::string &header, const std::string &headerValue)> AuthorizationHeaderChangeListener
The type of a callback called when the Authorization header used by a tileset loader has changed.
The loader interface to load the tile content.
External interfaces used by a Tileset.
A value that will be available in the future, as produced by AsyncSystem.
Definition Promise.h:12
Classes that implement the 3D Tiles standard.
The result of creating a TilesetContentLoader, including the status, request, and any errors,...
Additional options for configuring a Tileset.