Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
cr-parsing-location.h
Go to the documentation of this file.
1/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3/*
4 * This file is part of The Croco Library
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2.1 of the GNU Lesser General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 *
20 * Author: Dodji Seketeli.
21 * See the COPYRIGHTS file for copyright information.
22 */
23
24#ifndef __CR_PARSING_LOCATION_H__
25#define __CR_PARSING_LOCATION_H__
26
27#include "cr-utils.h"
28
29G_BEGIN_DECLS
30
40 guint line ;
41 guint column ;
43} ;
44
45
51
53
55
57 CRParsingLocation const *a_from) ;
58
63 FILE *a_fp) ;
64
66
67
68
69G_END_DECLS
70#endif
CRParsingLocationSerialisationMask
@ DUMP_LINE
@ DUMP_COLUMN
@ DUMP_BYTE_OFFSET
void cr_parsing_location_dump(CRParsingLocation const *a_this, enum CRParsingLocationSerialisationMask a_mask, FILE *a_fp)
enum CRStatus cr_parsing_location_init(CRParsingLocation *a_this)
enum CRStatus cr_parsing_location_copy(CRParsingLocation *a_to, CRParsingLocation const *a_from)
CRParsingLocation * cr_parsing_location_new(void)
gchar * cr_parsing_location_to_string(CRParsingLocation const *a_this, enum CRParsingLocationSerialisationMask a_mask)
void cr_parsing_location_destroy(CRParsingLocation *a_this)
The Croco library basic types definitions And global definitions.
CRStatus
The status type returned by the methods of the croco library.
Definition cr-utils.h:42