- Timestamp:
- Jan 11, 2022 11:32:41 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstUnattendedScript.cpp
r93193 r93194 23 23 24 24 #include <VBox/com/VirtualBox.h> 25 26 #include <VBox/com/com.h>27 #include <VBox/com/array.h>28 #include <VBox/com/string.h>29 #include <VBox/com/ErrorInfo.h>30 25 #include <VBox/com/errorprint.h> 31 26 27 #include <iprt/file.h> 28 #include <iprt/path.h> 32 29 #include <iprt/test.h> 33 30 #include <iprt/stream.h> 34 31 35 36 /*********************************************************************************************************************************37 * Stub Unattended Implementation *38 *********************************************************************************************************************************/39 /* $Id$ */40 /** @file41 * Unattended class implementation42 */43 44 /*45 * Copyright (C) 2006-2022 Oracle Corporation46 *47 * This file is part of VirtualBox Open Source Edition (OSE), as48 * available from http://www.virtualbox.org. This file is free software;49 * you can redistribute it and/or modify it under the terms of the GNU50 * General Public License (GPL) as published by the Free Software51 * Foundation, in version 2 as it comes in the "COPYING" file of the52 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the53 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.54 */55 56 57 /*********************************************************************************************************************************58 * Header Files *59 *********************************************************************************************************************************/60 #define LOG_GROUP LOG_GROUP_MAIN_UNATTENDED61 #include "LoggingNew.h"62 32 #include "VirtualBoxBase.h" 63 33 #include "UnattendedImpl.h" 64 #include "UnattendedInstaller.h"65 34 #include "UnattendedScript.h" 66 35 #include "VirtualBoxImpl.h" 67 #include "SystemPropertiesImpl.h"68 36 #include "MachineImpl.h" 69 #include "Global.h"70 71 #include <VBox/err.h>72 #include <iprt/ctype.h>73 #include <iprt/file.h>74 #include <iprt/fsvfs.h>75 #include <iprt/inifile.h>76 #include <iprt/locale.h>77 #include <iprt/path.h>78 #include <iprt/vfs.h>79 37 80 38 using namespace std;
Note:
See TracChangeset
for help on using the changeset viewer.