0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / StdDrivers / StdDrivers.hxx
CommitLineData
7ed7467d 1// Copyright (c) 2015 OPEN CASCADE SAS
2//
3// This file is part of Open CASCADE Technology software library.
4//
5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
10//
11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
13
14#ifndef _StdDrivers_HeaderFile
15#define _StdDrivers_HeaderFile
16
7ed7467d 17#include <Standard_Handle.hxx>
18
19class Standard_Transient;
20class Standard_GUID;
21class StdObjMgt_MapOfInstantiators;
6fe96f84 22class TDocStd_Application;
7ed7467d 23
24class StdDrivers
25{
7ed7467d 26public:
27 //! Depending from the ID, returns a list of storage
28 //! or retrieval attribute drivers. Used for plugin
29 Standard_EXPORT static Handle(Standard_Transient) Factory (const Standard_GUID& aGUID);
30
6fe96f84 31 //! Defines format "MDTV-Standard" and registers its retrieval driver
32 //! in the specified application
33 Standard_EXPORT static void DefineFormat (const Handle(TDocStd_Application)& theApp);
34
7ed7467d 35 //! Register types.
36 Standard_EXPORT static void BindTypes (StdObjMgt_MapOfInstantiators& theMap);
7ed7467d 37};
38
39#endif // _StdDrivers_HeaderFile