0027610: Some spelling mistakes in documentation of "Building with CMake"
[occt.git] / src / StdDrivers / StdDrivers.cxx
CommitLineData
7ed7467d 1// Created on: 2000-09-07
2// Created by: TURIN Anatoliy
3// Copyright (c) 2000-2015 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#include <StdDrivers.hxx>
17#include <StdDrivers_DocumentRetrievalDriver.hxx>
18
19#include <StdLPersistent.hxx>
20#include <StdPersistent.hxx>
21#include <ShapePersistent.hxx>
22
23#include <Standard_Failure.hxx>
24#include <Standard_GUID.hxx>
25#include <Plugin_Macro.hxx>
26
27static Standard_GUID StdRetrievalDriver ("ad696001-5b34-11d1-b5ba-00a0c9064368");
28
29//=======================================================================
30//function : Factory
31//purpose : Depending from the ID, returns a list of storage
32// or retrieval attribute drivers. Used for plugin
33//=======================================================================
34Handle(Standard_Transient) StdDrivers::Factory (const Standard_GUID& aGUID)
35{
36 if (aGUID == StdRetrievalDriver)
37 {
38#ifdef OCCT_DEBUG
39 cout << "StdDrivers : Retrieval Plugin" << endl;
40#endif
41
42 static Handle(StdDrivers_DocumentRetrievalDriver) model_rd = new StdDrivers_DocumentRetrievalDriver;
43 return model_rd;
44 }
45
46 Standard_Failure::Raise ("StdDrivers : unknown GUID");
47 return NULL;
48}
49
50//=======================================================================
51//function : BindTypes
52//purpose : Register types
53//=======================================================================
54void StdDrivers::BindTypes (StdObjMgt_MapOfInstantiators& theMap)
55{
56 StdLPersistent ::BindTypes (theMap);
57 StdPersistent ::BindTypes (theMap);
58 ShapePersistent::BindTypes (theMap);
59}
60
61
62#ifdef _MSC_VER
63#pragma warning(disable:4190) /* disable warning on C++ type returned by C function; should be OK for C++ usage */
64#endif
65
66// Declare entry point PLUGINFACTORY
67PLUGIN (StdDrivers)