~lib2geom-hackers/lib2geom/trunk

« back to all changes in this revision

Viewing changes to read-svgd.h

  • Committer: njh
  • Date: 2006-05-22 11:50:24 UTC
  • Revision ID: svn-v4:4601daaa-0314-0410-9a8b-c964a3c23b6b:trunk/lib2geom:1
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "path.h"
 
2
#include <cstdio>
 
3
#include <cassert>
 
4
 
 
5
Geom::Point read_point(std::FILE* f);
 
6
 
 
7
void write_svgd(std::FILE* f, Geom::Path const &p);
 
8
 
 
9
Geom::Path read_svgd(std::FILE* f);
 
10
 
 
11
 
 
12
/*
 
13
  Local Variables:
 
14
  mode:c++
 
15
  c-file-style:"stroustrup"
 
16
  c-file-offsets:((innamespace . 0)(substatement-open . 0))
 
17
  indent-tabs-mode:nil
 
18
  c-brace-offset:0
 
19
  fill-column:99
 
20
  End:
 
21
  vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
 
22
*/
 
23