/usr/include/oce/TObj_Assistant.hxx is in liboce-ocaf-lite-dev 0.17.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | // Created on: 2004-11-22
// Created by: Pavel TELKOV
// Copyright (c) 2004-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.
// The original implementation Copyright: (C) RINA S.p.A
#ifndef TObj_Assistant_HeaderFile
#define TObj_Assistant_HeaderFile
#include <TObj_Common.hxx>
class Handle(TObj_Model);
class TColStd_SequenceOfTransient;
class TColStd_SequenceOfAsciiString;
class TColStd_IndexedMapOfTransient;
//! This class provides interface to the static data
//! to be used during save or load models.
//!
//! Static data:
//! 1. DataMap of Modeller name - handle to model to be used in loading of references
//! 2. Indexed map of Standard_Type to be used during save or load of object type
//! 3. Handle to the current model - model that is loaded at the current moment
class TObj_Assistant
{
public:
/**
* Interface for DataMap of Modeller name
*/
//! Finds model by name
static Standard_EXPORT Handle(TObj_Model)
FindModel (const Standard_CString theName);
//! Binds model to the map
static Standard_EXPORT void
BindModel (const Handle(TObj_Model) theModel);
//! Clears all records from the model map
static Standard_EXPORT void
ClearModelMap ();
public:
/**
* Interface for Map of Standard Types
*/
//! Finds Standard_Type by index;
//! returns NULL handle if not found
static Standard_EXPORT Handle(Standard_Type)
FindType (const Standard_Integer theTypeIndex);
//! Rinds index by Standard_Type;
//! returns 0 if not found
static Standard_EXPORT Standard_Integer
FindTypeIndex (const Handle(Standard_Type)& theType);
//! Binds Standard_Type to the map;
//! returns index of bound type
static Standard_EXPORT Standard_Integer
BindType (const Handle(Standard_Type)& theType);
//! Clears map of types
static Standard_EXPORT void
ClearTypeMap ();
public:
/**
* Interface to the current model
*/
//! Sets current model
static Standard_EXPORT void
SetCurrentModel (const Handle(TObj_Model)& theModel);
//! Returns current model
static Standard_EXPORT Handle(TObj_Model)
GetCurrentModel();
//! Unsets current model
static Standard_EXPORT void
UnSetCurrentModel ();
public:
//! Returns the version of application which wrote the currently read document.
//! Returns 0 if it has not been set yet for the current document.
static Standard_EXPORT Standard_Integer GetAppVersion();
private:
//! Method for taking fields for map of models
static Standard_EXPORT TColStd_SequenceOfTransient& getModels();
//! Method for taking fields for map types
static Standard_EXPORT TColStd_IndexedMapOfTransient& getTypes();
//! Method for taking fields for the Current model
static Standard_EXPORT Handle(TObj_Model)& getCurrentModel();
//! Returns application version
static Standard_EXPORT Standard_Integer& getVersion();
};
#endif
#ifdef _MSC_VER
#pragma once
#endif
|