1 /* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef OHOS_ABILITY_SLITE_MISSION_INFO_H 17 #define OHOS_ABILITY_SLITE_MISSION_INFO_H 18 19 #include <stdint.h> 20 21 namespace OHOS { 22 namespace AbilitySlite { 23 class MissionInfo { 24 public: 25 MissionInfo() = default; 26 ~MissionInfo(); 27 28 MissionInfo(const MissionInfo &missionInfo); 29 MissionInfo &operator=(const MissionInfo &missionInfo); 30 GetAppName()31 const char *GetAppName() const 32 { 33 return appName_; 34 } 35 36 void SetAppName(const char *name); 37 private: 38 char *appName_ = nullptr; 39 }; 40 41 struct MissionInfoList { 42 MissionInfoList() = default; ~MissionInfoListMissionInfoList43 ~MissionInfoList() 44 { 45 delete[] missionInfos; 46 } 47 MissionInfoList(const MissionInfoList &) = delete; 48 MissionInfoList &operator=(const MissionInfoList &) = delete; 49 50 MissionInfo *missionInfos = nullptr; 51 uint32_t length = 0; 52 }; 53 } // namespace AbilitySlite 54 } // namespace OHOS 55 #endif // OHOS_ABILITY_SLITE_MISSION_INFO_H 56