Add GetFile() accessor to wxFileStream classes.
Allow to retrieve the underlying file used by the stream. Closes #15093. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -98,6 +98,12 @@ public:
|
||||
Returns @true if the stream is initialized and ready.
|
||||
*/
|
||||
bool IsOk() const;
|
||||
|
||||
/**
|
||||
Returns the underlying file object.
|
||||
@since 2.9.5
|
||||
*/
|
||||
wxFFile* GetFile() const;
|
||||
};
|
||||
|
||||
|
||||
@@ -147,6 +153,12 @@ public:
|
||||
Returns @true if the stream is initialized and ready.
|
||||
*/
|
||||
bool IsOk() const;
|
||||
|
||||
/**
|
||||
Returns the underlying file object.
|
||||
@since 2.9.5
|
||||
*/
|
||||
wxFile* GetFile() const;
|
||||
};
|
||||
|
||||
|
||||
@@ -196,6 +208,12 @@ public:
|
||||
Returns @true if the stream is initialized and ready.
|
||||
*/
|
||||
bool IsOk() const;
|
||||
|
||||
/**
|
||||
Returns the underlying file object.
|
||||
@since 2.9.5
|
||||
*/
|
||||
wxFile* GetFile() const;
|
||||
};
|
||||
|
||||
|
||||
@@ -246,6 +264,12 @@ public:
|
||||
Returns @true if the stream is initialized and ready.
|
||||
*/
|
||||
bool IsOk() const;
|
||||
|
||||
/**
|
||||
Returns the underlying file object.
|
||||
@since 2.9.5
|
||||
*/
|
||||
wxFFile* GetFile() const;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user