0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / ShapeExtend / ShapeExtend_BasicMsgRegistrator.cxx
CommitLineData
b311480e 1// Created on: 2000-01-28
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2000-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
7fd59977 15
42cf5bc1 16
17#include <Message_Msg.hxx>
18#include <ShapeExtend_BasicMsgRegistrator.hxx>
19#include <Standard_Transient.hxx>
20#include <Standard_Type.hxx>
21#include <TopoDS_Shape.hxx>
7fd59977 22
25e59720 23IMPLEMENT_STANDARD_RTTIEXT(ShapeExtend_BasicMsgRegistrator,Standard_Transient)
92efcf78 24
7fd59977 25//=======================================================================
26//function : ShapeExtend_BasicMsgRegistrator
27//purpose :
28//=======================================================================
7fd59977 29ShapeExtend_BasicMsgRegistrator::ShapeExtend_BasicMsgRegistrator()
30{
31}
32
33//=======================================================================
34//function : Send
35//purpose :
36//=======================================================================
37
38 void ShapeExtend_BasicMsgRegistrator::Send(const Handle(Standard_Transient)& /*object*/,
39 const Message_Msg& /*message*/,
40 const Message_Gravity /*gravity*/)
41{
42}
43
44//=======================================================================
45//function : Send
46//purpose :
47//=======================================================================
48
49 void ShapeExtend_BasicMsgRegistrator::Send(const TopoDS_Shape& /*shape*/,
50 const Message_Msg& /*message*/,
51 const Message_Gravity /*gravity*/)
52{
53}
54
55//=======================================================================
56//function : Send
57//purpose :
58//=======================================================================
59
60 void ShapeExtend_BasicMsgRegistrator::Send(const Message_Msg& message,
61 const Message_Gravity gravity)
62{
63 Handle(Standard_Transient) dummy;
64 Send (dummy, message, gravity);
65}
66