0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / Storage / Storage_TypedCallBack.cxx
CommitLineData
b311480e 1// Copyright (c) 1998-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
d5f74e42 6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
b311480e 14
42cf5bc1 15
16#include <Standard_Type.hxx>
17#include <Storage_CallBack.hxx>
18#include <Storage_TypedCallBack.hxx>
19#include <TCollection_AsciiString.hxx>
7fd59977 20
25e59720 21IMPLEMENT_STANDARD_RTTIEXT(Storage_TypedCallBack,Standard_Transient)
92efcf78 22
7fd59977 23Storage_TypedCallBack::Storage_TypedCallBack() : myIndex(0)
24{
25}
26
27Storage_TypedCallBack::Storage_TypedCallBack(const TCollection_AsciiString& aTypeName,const Handle(Storage_CallBack)& aCallBack) : myIndex(0)
28{
29 myType = aTypeName;
30 myCallBack = aCallBack;
31}
32
33void Storage_TypedCallBack::SetType(const TCollection_AsciiString& aType)
34{
35 myType = aType;
36}
37
38TCollection_AsciiString Storage_TypedCallBack::Type() const
39{
40 return myType;
41}
42
43void Storage_TypedCallBack::SetCallBack(const Handle(Storage_CallBack)& aCallBack)
44{
45 myCallBack = aCallBack;
46}
47
48Handle(Storage_CallBack) Storage_TypedCallBack::CallBack() const
49{
50 return myCallBack;
51}
52
53void Storage_TypedCallBack::SetIndex(const Standard_Integer anIndex)
54{
55 myIndex = anIndex;
56}
57
58Standard_Integer Storage_TypedCallBack::Index() const
59{
60 return myIndex;
61}