(root)/
libredwg-0.13/
src/
print.h
       1  /*****************************************************************************/
       2  /*  LibreDWG - free implementation of the DWG file format                    */
       3  /*                                                                           */
       4  /*  Copyright (C) 2009-2019 Free Software Foundation, Inc.                   */
       5  /*                                                                           */
       6  /*  This library is free software, licensed under the terms of the GNU       */
       7  /*  General Public License as published by the Free Software Foundation,     */
       8  /*  either version 3 of the License, or (at your option) any later version.  */
       9  /*  You should have received a copy of the GNU General Public License        */
      10  /*  along with this program.  If not, see <http://www.gnu.org/licenses/>.    */
      11  /*****************************************************************************/
      12  
      13  /*
      14   * print.h: print helper function prototypes
      15   * written by Felipe CorrĂȘa da Silva Sanches
      16   * modified by Rodrigo Rodrigues da Silva
      17   * modified by Reini Urban
      18   */
      19  
      20  #ifndef PRINT_H
      21  #define PRINT_H
      22  
      23  #include "dwg.h"
      24  #include "bits.h"
      25  
      26  #ifdef IN_DXF_H
      27  #  error in_dxf.h must be included after print.h because of FORMAT_BD
      28  #endif
      29  
      30  int dwg_print_object (Bit_Chain *dat, Dwg_Object *obj);
      31  
      32  #endif