1 /* 2 * Copyright (c) 2023-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 PASTE_DATA_TEST_CLIP_FACTORY_H 17 #define PASTE_DATA_TEST_CLIP_FACTORY_H 18 #include "clip/clip_plugin.h" 19 namespace OHOS::MiscServices { 20 class ClipFactory : public ClipPlugin::Factory { 21 public: 22 ClipFactory(); 23 ~ClipFactory(); 24 ClipPlugin *Create() override; 25 bool Destroy(ClipPlugin *plugin) override; 26 27 private: 28 ClipPlugin *clip_ = nullptr; 29 static ClipFactory factory_; 30 }; 31 Create()32ClipPlugin *ClipFactory::Create() 33 { 34 return clip_; 35 } 36 Destroy(ClipPlugin * plugin)37bool ClipFactory::Destroy(ClipPlugin *plugin) 38 { 39 if (plugin == clip_) { 40 delete clip_; 41 clip_ = nullptr; 42 return true; 43 } 44 return false; 45 } 46 } 47 #endif // PASTE_DATA_TEST_CLIP_FACTORY_H