// Purpose: interface of wxFSVolume
// Author: wxWidgets team
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
/**
Default ctor. Use Create() later.
*/
- wxFSVolumeBase();
+ wxFSVolume();
/**
Create the volume object with the given @a name (which should be one of
those returned by GetVolumes()).
*/
- wxFSVolumeBase(const wxString& name);
+ wxFSVolume(const wxString& name);
/**
Create the volume object with the given @a name (which should be one of
Only the volumes with @e flags such that the expression
@code (flags & flagsSet) == flagsSet && !(flags & flagsUnset) @endcode
is @true, are returned. By default, all mounted ones are returned.
+ See ::wxFSVolumeFlags enumeration values for a list of valid flags.
This operation may take a while and, even if this function is
synchronous, it can be stopped using CancelSearch().
wxFSVolumeKind GetKind() const;
/**
- Returns the flags of this volume. See wxFSVolumeFlags.
+ Returns the flags of this volume. See ::wxFSVolumeFlags enumeration values.
*/
int GetFlags() const;