Files
miscservices_wallpaper/services/include/component_name.h
T
liulinna4 01a4c65e5f add wallpaper service
Signed-off-by: liulinna4 <liulinna4@huawei.com>
2022-03-08 21:36:38 +08:00

45 lines
1.2 KiB
C++

/*
* Copyright (C) 2022 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 SERVICES_INCLUDE_WALLPAPER_COMMONENT_NAME_H
#define SERVICES_INCLUDE_WALLPAPER_COMMONENT_NAME_H
#include <string>
namespace OHOS {
namespace WallpaperMgrService {
class ComponentName {
public:
ComponentName();
ComponentName(std::string pkg, std::string cls);
/**
* * Return the package name of this component.
*/
std::string GetPackageName();
/**
* Return the class name of this component.
*/
std::string GetClassName();
bool equals(ComponentName& obj);
void SetComponentInfo(std::string pkg, std::string cls);
private:
std::string mPackage;
std::string mClass;
};
}
}
#endif