]> Dogcows Code - chaz/yoink/blob - src/Typesetter.hh
remove some unused stlplus modules
[chaz/yoink] / src / Typesetter.hh
1
2 /*] Copyright (c) 2009-2011, Charles McGarvey [*****************************
3 **] All rights reserved.
4 *
5 * Distributable under the terms and conditions of the 2-clause BSD license;
6 * see the file COPYING for a complete text of the license.
7 *
8 *****************************************************************************/
9
10 #ifndef _TYPESETTER_HH_
11 #define _TYPESETTER_HH_
12
13 #include <string>
14
15 #include <moof/math.hh>
16
17
18 class Typesetter
19 {
20 public:
21
22 Typesetter();
23
24 void setLineSpacing(moof::scalar spacing);
25
26 void print(const std::string& format, ...);
27
28 private:
29
30 moof::scalar mLeftBound;
31 moof::scalar mTopBound;
32 moof::scalar mLineSpacing;
33 };
34
35
36 #endif // _TYPESETTER_HH_
37
This page took 0.030404 seconds and 4 git commands to generate.