feat(python): Repaired python bindings
Python bindings have now been brought back up to feature pairity with C++. Further, stubs have been added for all python features so that code completion will work
This commit is contained in:
@@ -153,7 +153,7 @@ namespace gridfire::policy {
|
||||
* if (s != NetworkPolicyStatus::INITIALIZED_VERIFIED) { // handle error }
|
||||
* @endcode
|
||||
*/
|
||||
[[nodiscard]] virtual NetworkPolicyStatus getStatus() const = 0;
|
||||
[[nodiscard]] virtual NetworkPolicyStatus get_status() const = 0;
|
||||
|
||||
[[nodiscard]] virtual const std::vector<std::unique_ptr<engine::DynamicEngine>> &get_engine_stack() const = 0;
|
||||
|
||||
|
||||
@@ -141,7 +141,7 @@ namespace gridfire::policy {
|
||||
* @brief Gets the current status of the policy.
|
||||
* @return NetworkPolicyStatus The construction and verification status.
|
||||
*/
|
||||
[[nodiscard]] NetworkPolicyStatus getStatus() const override;
|
||||
[[nodiscard]] NetworkPolicyStatus get_status() const override;
|
||||
|
||||
[[nodiscard]] const std::vector<std::unique_ptr<engine::DynamicEngine>> &get_engine_stack() const override;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user