0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / Draw / Draw_Printer.hxx
CommitLineData
42cf5bc1 1// Created on: 2007-07-31
2// Created by: OCC Team
3// Copyright (c) 2007-2014 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#ifndef _Draw_Printer_HeaderFile
17#define _Draw_Printer_HeaderFile
18
42cf5bc1 19#include <Message_Printer.hxx>
20#include <Draw_Interpretor.hxx>
42cf5bc1 21
22class Draw_Printer;
23DEFINE_STANDARD_HANDLE(Draw_Printer, Message_Printer)
24
25//! Implementation of Printer class with output
26//! (Message_Messenge) directed to Draw_Interpretor
27class Draw_Printer : public Message_Printer
28{
fa8a4628 29 DEFINE_STANDARD_RTTIEXT(Draw_Printer, Message_Printer)
42cf5bc1 30public:
31
42cf5bc1 32 //! Creates a printer connected to the interpretor.
fa8a4628 33 Standard_EXPORT Draw_Printer (Draw_Interpretor& theTcl);
42cf5bc1 34
35protected:
36
fa8a4628 37 //! Send a string message with specified trace level.
38 Standard_EXPORT virtual void send (const TCollection_AsciiString& theString,
39 const Message_Gravity theGravity) const Standard_OVERRIDE;
42cf5bc1 40
41private:
42
fa8a4628 43 Draw_Interpretor* myTcl;
42cf5bc1 44
45};
46
42cf5bc1 47#endif // _Draw_Printer_HeaderFile