VirtualBox

source: vbox/trunk/src/VBox/Main/include/MachineImplCloneVM.h@ 69498

Last change on this file since 69498 was 69498, checked in by vboxsync, 7 years ago

backed out r118835 as it incorrectly updated the 'This file is based on' file headers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1/* $Id: MachineImplCloneVM.h 69498 2017-10-28 15:07:25Z vboxsync $ */
2/** @file
3 * Definition of MachineCloneVM
4 */
5
6/*
7 * Copyright (C) 2011-2016 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. */
25struct MachineCloneVMPrivate;
26
27class MachineCloneVM
28{
29public:
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
35protected:
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
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette