]> git.mxchange.org Git - flightgear.git/blob - Polygon/index.hxx
ddc8acb6f4f027b8ce3aed1f2d6a67fb82ba9cac
[flightgear.git] / Polygon / index.hxx
1 // index.cxx -- routines to handle a unique/persistant integer polygon index
2 //
3 // Written by Curtis Olson, started February 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2 of the License, or
10 // (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #ifndef _INDEX_HXX
26 #define _INDEX_HXX
27
28
29 #include <Include/compiler.h>
30
31 #include STL_STRING
32
33
34 // initialize the unique polygon index counter stored in path
35 bool poly_index_init( string path );
36
37 // increment the persistant counter and return the next poly_index
38 int poly_index_next();
39
40
41
42 #endif // _INDEX_HXX
43
44
45 // $Log$
46 // Revision 1.1  1999/02/25 21:30:24  curt
47 // Initial revision.
48 //