// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _OSD_FileIterator_HeaderFile #define _OSD_FileIterator_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _OSD_File_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _TCollection_AsciiString_HeaderFile #include #endif #ifndef _Standard_Address_HeaderFile #include #endif #ifndef _OSD_Error_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif class OSD_OSDError; class OSD_Path; class TCollection_AsciiString; class OSD_File; //! Manages a breadth-only search for files in the specified
//! Path.
//! There is no specific order of results.
class OSD_FileIterator { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } //! Instantiates Object as empty Iterator;
Standard_EXPORT OSD_FileIterator(); //! Instantiates Object as Iterator;
//! Wild-card "*" can be used in Mask the same way it
//! is used by unix shell for file names
Standard_EXPORT OSD_FileIterator(const OSD_Path& where,const TCollection_AsciiString& Mask); Standard_EXPORT void Destroy() ; ~OSD_FileIterator() { Destroy(); } //! Initializes the current File Iterator
Standard_EXPORT void Initialize(const OSD_Path& where,const TCollection_AsciiString& Mask) ; //! Returns TRUE if there are other items using the 'Tree'
//! method.
Standard_EXPORT Standard_Boolean More() ; //! Sets the iterator to the next item.
//! Returns the item value corresponding to the current
//! position of the iterator.
Standard_EXPORT void Next() ; //! Returns the next file found .
Standard_EXPORT OSD_File Values() ; //! Returns TRUE if an error occurs
Standard_EXPORT Standard_Boolean Failed() const; //! Resets error counter to zero
Standard_EXPORT void Reset() ; //! Raises OSD_Error
Standard_EXPORT void Perror() ; //! Returns error number if 'Failed' is TRUE.
Standard_EXPORT Standard_Integer Error() const; protected: private: OSD_File TheIterator; Standard_Integer myFlag; TCollection_AsciiString myMask; TCollection_AsciiString myPlace; Standard_Address myDescr; Standard_Address myEntry; Standard_Integer myInit; OSD_Error myError; Standard_Integer myHandle; Standard_Address myData; Standard_Boolean myFirstCall; }; // other Inline functions and methods (like "C++: function call" methods) #endif