]> git.donarmstrong.com Git - flightcrew.git/blob - src/zipios/zipios++/zipios_defs.h
Imported Upstream version 0.7.2+dfsg
[flightcrew.git] / src / zipios / zipios++ / zipios_defs.h
1 #ifndef ZIPIOS_DEFS_H
2 #define ZIPIOS_DEFS_H
3
4 #include <boost/cstdint.hpp>
5
6 namespace zipios {
7
8 typedef boost::uint16_t uint16 ;
9 typedef boost::uint32_t uint32 ;
10
11 } // namespace
12
13 #endif
14
15 /** \file
16     Header file that defines some simple data types.
17 */
18
19 /*
20   Zipios++ - a small C++ library that provides easy access to .zip files.
21   Copyright (C) 2000  Thomas Sondergaard
22   
23   This library is free software; you can redistribute it and/or
24   modify it under the terms of the GNU Lesser General Public
25   License as published by the Free Software Foundation; either
26   version 2 of the License, or (at your option) any later version.
27   
28   This library is distributed in the hope that it will be useful,
29   but WITHOUT ANY WARRANTY; without even the implied warranty of
30   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
31   Lesser General Public License for more details.
32   
33   You should have received a copy of the GNU Lesser General Public
34   License along with this library; if not, write to the Free Software
35   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
36 */