Changeset 71250 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 7, 2018 11:02:14 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestDirectoryImpl.h
r69500 r71250 5 5 6 6 /* 7 * Copyright (C) 2012-201 7Oracle Corporation7 * Copyright (C) 2012-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 19 19 #define ____H_GUESTDIRECTORYIMPL 20 20 21 #include "GuestDirectoryWrap.h" 22 #include "GuestFsObjInfoImpl.h" 21 23 #include "GuestProcessImpl.h" 22 #include "GuestDirectoryWrap.h"23 24 24 25 class GuestSession; … … 49 50 int i_onRemove(void); 50 51 52 int i_closeInternal(int *pGuestRc); 53 int i_readInternal(ComObjPtr<GuestFsObjInfo> &fsObjInfo, int *pGuestRc); 54 /** @} */ 55 56 public: 57 /** @name Public static internal methods. 58 * @{ */ 51 59 static Utf8Str i_guestErrorToString(int guestRc); 52 60 static HRESULT i_setErrorExternal(VirtualBoxBase *pInterface, int guestRc); … … 55 63 private: 56 64 57 /** @name Private Wrappedproperties65 /** Wrapped @name IGuestDirectory properties 58 66 * @{ */ 59 /** @} */60 67 HRESULT getDirectoryName(com::Utf8Str &aDirectoryName); 61 68 HRESULT getFilter(com::Utf8Str &aFilter); 69 /** @} */ 62 70 63 /** @name Wrapped Private internalmethods.71 /** Wrapped @name IGuestDirectory methods. 64 72 * @{ */ 65 /** @} */66 73 HRESULT close(); 67 74 HRESULT read(ComPtr<IFsObjInfo> &aObjInfo); 75 /** @} */ 68 76 69 77 struct Data
Note:
See TracChangeset
for help on using the changeset viewer.