31 Star 46 Fork 16

ArkUI-X/app_framework
Paused

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
ability_delegator_registry.h 2.07 KB
Copy Edit Raw Blame History
mamingshuai authored 2024-05-31 14:40 +08:00 . init ArkUI-X-1.1.6-Release
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef OHOS_ABILITY_RUNTIME_ABILITY_DELEGATOR_REGISTRY_H
#define OHOS_ABILITY_RUNTIME_ABILITY_DELEGATOR_REGISTRY_H
#include <memory>
#include "ability_delegator.h"
#include "ability_delegator_args.h"
namespace OHOS {
namespace AppExecFwk {
class AbilityDelegatorRegistry {
public:
/**
* Obtains the AbilityDelegator object of the application.
*
* @return the AbilityDelegator object initialized when the application is started.
*/
static std::shared_ptr<AbilityDelegator> GetAbilityDelegator();
/**
* Obtains test parameters stored in the AbilityDelegatorArgs object.
*
* @return the previously registered AbilityDelegatorArgs object.
*/
static std::shared_ptr<AbilityDelegatorArgs> GetArguments();
/**
* Registers the instances of AbilityDelegator and AbilityDelegatorArgs as globally unique instances.
* This method is called during application startup to initialize the test environment.
*
* @param delegator, Indicates the AbilityDelegator object.
* @param args, Indicates the AbilityDelegatorArgs object.
*/
static void RegisterInstance(
const std::shared_ptr<AbilityDelegator> &delegator, const std::shared_ptr<AbilityDelegatorArgs> &args);
private:
static std::shared_ptr<AbilityDelegator> abilityDelegator_;
static std::shared_ptr<AbilityDelegatorArgs> abilityDelegatorArgs_;
};
} // namespace AppExecFwk
} // namespace OHOS
#endif // OHOS_ABILITY_RUNTIME_ABILITY_DELEGATOR_REGISTRY_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/arkui-x/app_framework.git
git@gitee.com:arkui-x/app_framework.git
arkui-x
app_framework
app_framework
fa7988c63079a572da00d95042555273bf219a0f

Search