FHTypes.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libfreehand project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
9 
10 #ifndef __FHTYPES_H__
11 #define __FHTYPES_H__
12 
13 namespace libfreehand
14 {
15 
16 struct FHPageInfo
17 {
18  double m_minX;
19  double m_minY;
20  double m_maxX;
21  double m_maxY;
22  FHPageInfo() : m_minX(0.0), m_minY(0.0), m_maxX(0.0), m_maxY(0.0) {}
23 };
24 
25 } // namespace libfreehand
26 
27 #endif /* __FHTYPES_H__ */
28 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
FHPageInfo()
Definition: FHTypes.h:22
Definition: FHTypes.h:16
Definition: FHCollector.h:19
double m_maxY
Definition: FHTypes.h:21
double m_minX
Definition: FHTypes.h:18
double m_maxX
Definition: FHTypes.h:20
double m_minY
Definition: FHTypes.h:19

Generated for libfreehand by doxygen 1.8.10