mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
98 lines
3.3 KiB
Plaintext
98 lines
3.3 KiB
Plaintext
-- Created on: 1992-05-18
|
|
-- Created by: Stephan GARNAUD
|
|
-- Copyright (c) 1992-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
--
|
|
-- This file is part of Open CASCADE Technology software library.
|
|
--
|
|
-- This library is free software; you can redistribute it and/or modify it under
|
|
-- the terms of the GNU Lesser General Public License version 2.1 as published
|
|
-- by the Free Software Foundation, with special exception defined in the file
|
|
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
-- distribution for complete text of the license and disclaimer of any warranty.
|
|
--
|
|
-- Alternatively, this file may be used under the terms of Open CASCADE
|
|
-- commercial license or contractual agreement.
|
|
|
|
-- Updated: J.P. TIRAULT August 1993
|
|
-- All methods are static methods.
|
|
|
|
|
|
class DirectoryIterator from OSD
|
|
|
|
---Purpose: Manages a breadth-only search for sub-directories in the specified
|
|
-- Path.
|
|
-- There is no specific order of results.
|
|
|
|
uses Directory, Path, Error, AsciiString from TCollection
|
|
|
|
raises OSDError
|
|
|
|
is
|
|
|
|
Create returns DirectoryIterator ;
|
|
---WARNING! : This method is not implemented on Windows NT System
|
|
---Purpose: Instantiates Object as empty Iterator;
|
|
---Level: Public
|
|
|
|
Create (where : Path ; Mask : AsciiString) returns DirectoryIterator;
|
|
---Purpose: Instantiates Object as Iterator.
|
|
-- Wild-card "*" can be used in Mask the same way it
|
|
-- is used by unix shell for file names
|
|
---Level: Public
|
|
|
|
Destroy ( me : out );
|
|
---C++: alias ~
|
|
-- Only implemented on Windows NT
|
|
|
|
Initialize (me : in out ; where : Path ; Mask : AsciiString) is static;
|
|
---WARNING! : This method is not implemented on Windows NT System
|
|
---Purpose: Initializes the current File Directory
|
|
---Level: Public
|
|
|
|
More (me : in out) returns Boolean is static;
|
|
---Purpose: Returns TRUE if other items are found while
|
|
-- using the 'Tree' method.
|
|
---Level: Public
|
|
|
|
Next (me : in out) is static;
|
|
---Purpose: Sets the iterator to the next item.
|
|
-- Returns the item value corresponding to the current
|
|
-- position of the iterator.
|
|
---Level: Public
|
|
|
|
Values (me : in out) returns Directory is static;
|
|
---Purpose: Returns the next item found .
|
|
---Level: Public
|
|
|
|
Failed (me) returns Boolean is static;
|
|
---Purpose: Returns TRUE if an error occurs
|
|
---Level: Public
|
|
|
|
Reset (me : in out) is static;
|
|
---Purpose: Resets error counter to zero
|
|
---Level: Public
|
|
|
|
Perror (me : in out)
|
|
---Purpose: Raises OSD_Error
|
|
---Level: Public
|
|
raises OSDError is static;
|
|
|
|
Error (me) returns Integer is static;
|
|
---Purpose: Returns error number if 'Failed' is TRUE.
|
|
---Level: Public
|
|
|
|
fields
|
|
TheIterator : Directory; -- The iterator item
|
|
myFlag : Integer;
|
|
myMask : AsciiString;
|
|
myPlace : AsciiString;
|
|
myDescr : Address ; -- unused by Windows NT code
|
|
myEntry : Address ; -- unused by Windows NT code
|
|
myInit : Integer ; -- unused by Windows NT code
|
|
myError : Error;
|
|
myHandle : Address; -- Windows NT specific
|
|
myData : Address; -- Windows NT specific
|
|
myFirstCall : Boolean; -- Windows NT specific
|
|
end DirectoryIterator from OSD;
|