-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
86 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
include/dxfeed_graal_cpp_api/internal/managers/InstrumentProfileConnectionManager.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) 2023 Devexperts LLC. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
#pragma once | ||
|
||
#include "../Conf.hpp" | ||
|
||
#include <memory> | ||
#include <unordered_map> | ||
#include <unordered_set> | ||
|
||
#include "../Common.hpp" | ||
#include "EntityManager.hpp" | ||
|
||
namespace dxfcpp { | ||
|
||
class InstrumentProfileConnection; | ||
|
||
using InstrumentProfileConnectionManager = EntityManager<InstrumentProfileConnection>; | ||
|
||
} // namespace dxfcpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
include/dxfeed_graal_cpp_api/ipf/live/InstrumentProfileConnection.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright (c) 2023 Devexperts LLC. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
#pragma once | ||
|
||
#include "../../internal/Conf.hpp" | ||
|
||
#include "../../internal/Common.hpp" | ||
#include "../../internal/Id.hpp" | ||
#include "../../internal/JavaObjectHandle.hpp" | ||
|
||
#include "../../entity/SharedEntity.hpp" | ||
|
||
namespace dxfcpp { | ||
|
||
class DXFCPP_EXPORT InstrumentProfileConnection final : public SharedEntity { | ||
Id<InstrumentProfileConnection> id_; | ||
JavaObjectHandle<InstrumentProfileConnection> handle_; | ||
|
||
//InstrumentProfileConnection() noexcept; | ||
|
||
public: | ||
|
||
/// The alias to a type of shared pointer to the InstrumentProfileConnection object | ||
using Ptr = std::shared_ptr<InstrumentProfileConnection>; | ||
|
||
/// The alias to a type of unique pointer to the InstrumentProfileConnection object | ||
using Unique = std::unique_ptr<InstrumentProfileConnection>; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) 2023 Devexperts LLC. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
#include <dxfg_api.h> | ||
|
||
#include <dxfeed_graal_c_api/api.h> | ||
#include <dxfeed_graal_cpp_api/api.hpp> | ||
|
||
#include <cstring> | ||
#include <memory> | ||
#include <utf8.h> | ||
#include <utility> | ||
|
||
#include <fmt/chrono.h> | ||
#include <fmt/format.h> | ||
#include <fmt/ostream.h> | ||
#include <fmt/std.h> | ||
|
||
namespace dxfcpp { | ||
|
||
|
||
} |