source: trunk/third/librsvg/rsvg-path.h @ 18275

Revision 18275, 1.1 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18274, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2   rsvg-path.h: Parse SVG path element data into bezier path.
3 
4   Copyright (C) 2000 Eazel, Inc.
5 
6   This program is free software; you can redistribute it and/or
7   modify it under the terms of the GNU Library General Public License as
8   published by the Free Software Foundation; either version 2 of the
9   License, or (at your option) any later version.
10 
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   Library General Public License for more details.
15 
16   You should have received a copy of the GNU Library General Public
17   License along with this program; if not, write to the
18   Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19   Boston, MA 02111-1307, USA.
20 
21   Author: Raph Levien <raph@artofcode.com>
22*/
23
24#ifndef RSVG_PATH_H
25#define RSVG_PATH_H
26
27#include "rsvg-bpath-util.h"
28
29#ifdef __cplusplus
30extern "C" {
31#endif /* __cplusplus */
32
33RsvgBpathDef *
34rsvg_parse_path (const char *path_str);
35
36#ifdef __cplusplus
37}
38#endif /* __cplusplus */
39
40#endif
Note: See TracBrowser for help on using the repository browser.