mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
21 lines
522 B
C++
21 lines
522 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
#pragma once
|
|
|
|
#include "environment.h"
|
|
|
|
namespace onnxruntime {
|
|
namespace server {
|
|
namespace test {
|
|
ServerEnvironment* ServerEnv();
|
|
class TestServerEnvironment {
|
|
public:
|
|
TestServerEnvironment();
|
|
~TestServerEnvironment();
|
|
|
|
TestServerEnvironment(const TestServerEnvironment&) = delete;
|
|
TestServerEnvironment(TestServerEnvironment&&) = default;
|
|
};
|
|
} // namespace test
|
|
} // namespace server
|
|
} // namespace onnxruntime
|