Changeset 18406 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 27, 2009 3:31:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ProgressImpl.h
r18269 r18406 73 73 STDMETHOD(COMGETTER(Cancelable)) (BOOL *aCancelable); 74 74 STDMETHOD(COMGETTER(Percent)) (ULONG *aPercent); 75 STDMETHOD(COMGETTER(TimeRemaining)) (LONG *aTimeRemaining); 75 76 STDMETHOD(COMGETTER(Completed)) (BOOL *aCompleted); 76 77 STDMETHOD(COMGETTER(Canceled)) (BOOL *aCanceled); … … 91 92 BOOL completed() const { return mCompleted; } 92 93 HRESULT resultCode() const { return mResultCode; } 94 double calcTotalPercent(); 93 95 94 96 protected: … … 103 105 const Guid mId; 104 106 const Bstr mDescription; 107 108 uint64_t m_ullTimestamp; // progress object creation timestamp, for ETA computation 105 109 106 110 /* The fields below are to be properly initalized by subclasses */
Note:
See TracChangeset
for help on using the changeset viewer.