1 | /* $Id: MachineImplCloneVM.h 69500 2017-10-28 15:14:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Definition of MachineCloneVM
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ____H_MACHINEIMPLCLONEVM
|
---|
19 | #define ____H_MACHINEIMPLCLONEVM
|
---|
20 |
|
---|
21 | #include "MachineImpl.h"
|
---|
22 | #include "ProgressImpl.h"
|
---|
23 |
|
---|
24 | /* Forward declaration of the d-pointer. */
|
---|
25 | struct MachineCloneVMPrivate;
|
---|
26 |
|
---|
27 | class MachineCloneVM
|
---|
28 | {
|
---|
29 | public:
|
---|
30 | MachineCloneVM(ComObjPtr<Machine> pSrcMachine, ComObjPtr<Machine> pTrgMachine, CloneMode_T mode, const RTCList<CloneOptions_T> &opts);
|
---|
31 | ~MachineCloneVM();
|
---|
32 |
|
---|
33 | HRESULT start(IProgress **pProgress);
|
---|
34 |
|
---|
35 | protected:
|
---|
36 | HRESULT run();
|
---|
37 | void destroy();
|
---|
38 |
|
---|
39 | /* d-pointer */
|
---|
40 | MachineCloneVM(MachineCloneVMPrivate &d);
|
---|
41 | MachineCloneVMPrivate *d_ptr;
|
---|
42 |
|
---|
43 | friend struct MachineCloneVMPrivate;
|
---|
44 | };
|
---|
45 |
|
---|
46 | #endif // ____H_MACHINEIMPLCLONEVM
|
---|
47 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|
48 |
|
---|