/////////////////////////////////////////////////////////////////////////////
// Name: ffile.h
-// Purpose: documentation for wxFFile class
+// Purpose: interface of wxFFile
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{file}
- @seealso
- wxFFile::IsOpened
+ @see wxFFile::IsOpened
*/
class wxFFile
{
@see IsOpened()
*/
- bool Eof();
+ bool Eof() const;
/**
Returns @true if an error has occurred on this file, similar to the standard
/**
Returns the type of the file. Possible return values are:
*/
- wxFileKind GetKind();
+ wxFileKind GetKind() const;
/**
Returns @true if the file is opened. Most of the methods of this class may
only
be used for an opened file.
*/
- bool IsOpened();
+ bool IsOpened() const;
/**
Returns the length of the file.
*/
- wxFileOffset Length();
+ wxFileOffset Length() const;
/**
Opens the file, returning @true if successful.
/**
Returns the current position.
*/
- wxFileOffset Tell();
+ wxFileOffset Tell() const;
/**
)
/**
Returns the file pointer associated with the file.
*/
- FILE* fp();
+ FILE* fp() const;
};
+