diff --git a/openr/policy/PolicyManager.cpp b/openr/policy/PolicyManager.cpp deleted file mode 100644 index 31c7747cc46..00000000000 --- a/openr/policy/PolicyManager.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -#include - -namespace openr { - -class PolicyManagerImpl {}; - -PolicyManager::PolicyManager( - const neteng::config::routing_policy::PolicyConfig& config) {} -PolicyManager::~PolicyManager() = default; - -std::pair, std::string /*policy name*/> -PolicyManager::applyPolicy( - const std::string& policyStatementName, - const std::shared_ptr& prefixEntry, - const std::optional& policyActionData, - const std::optional& policyMatchData) noexcept { - return {prefixEntry, "Always Allow"}; -} - -} // namespace openr