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 UI_INPUT_H 17 #define UI_INPUT_H 18 #include <regex> 19 #include <iostream> 20 #include <unistd.h> 21 #include <dirent.h> 22 #include <sys/stat.h> 23 #include <typeinfo> 24 #include <vector> 25 #include <condition_variable> 26 #include <cstdio> 27 #include <cstdlib> 28 #include "ui_driver.h" 29 #include "ui_action.h" 30 #include "ui_model.h" 31 #include "frontend_api_handler.h" 32 #include "common_utilities_hpp.h" 33 34 35 namespace OHOS::uitest { 36 int32_t UiActionInput(int32_t argc, char *argv[]); 37 void PrintInputMessage(); 38 } // namespace OHOS::uitest 39 #endif // UI_INPUT_H