0030692: Data Exchange - introduce base framework RWMesh for importing mesh data...
[occt.git] / src / OSD / OSD_Directory.hxx
1 // Created on: 1992-05-18
2 // Created by: Stephan GARNAUD (ARM)
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _OSD_Directory_HeaderFile
18 #define _OSD_Directory_HeaderFile
19
20 #include <OSD_FileNode.hxx>
21
22 //! Management of directories (a set of directory oriented tools)
23 class OSD_Directory : public OSD_FileNode
24 {
25 public:
26
27   //! Creates a temporary Directory in current directory.
28   //! This directory is automatically removed when object dies.
29   Standard_EXPORT static OSD_Directory BuildTemporary();
30
31 public:
32
33   //! Creates Directory object.
34   //! It is initiliazed to an empty name.
35   Standard_EXPORT OSD_Directory();
36
37   //! Creates Directory object initialized with theName.
38   Standard_EXPORT OSD_Directory (const OSD_Path& theName);
39
40   //! Creates (physically) a directory.
41   //! When a directory of the same name already exists, no error is
42   //! returned, and only <Protect> is applied to the existing directory.
43   //!
44   //! If Build is used and <me> is instantiated without a name,
45   //! OSDError is raised.
46   Standard_EXPORT void Build (const OSD_Protection& Protect);
47
48 };
49
50 #endif // _OSD_Directory_HeaderFile