mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-26 17:01:27 +02:00
23 lines
591 B
C++
23 lines
591 B
C++
//
|
|
// MetaverseAPI.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Kalila L. on 2019-12-16.
|
|
// Copyright 2019 Vircadia contributors.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef athena_MetaverseAPI_h
|
|
#define athena_MetaverseAPI_h
|
|
|
|
#include <QtCore/QProcessEnvironment>
|
|
#include <QtCore/QUrl>
|
|
|
|
namespace MetaverseAPI {
|
|
QUrl getCurrentMetaverseServerURL();
|
|
QString getCurrentMetaverseServerURLPath(bool appendForwardSlash = false);
|
|
}
|
|
|
|
#endif // athena_MetaverseAPI_h
|