]> Dogcows Code - chaz/yoink/blob - src/Typesetter.hh
incorporated vim's link.sh; -i arg reports commit
[chaz/yoink] / src / Typesetter.hh
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #ifndef _TYPESETTER_HH_
13 #define _TYPESETTER_HH_
14
15 #include <string>
16
17 #include <Moof/Math.hh>
18
19
20 class Typesetter
21 {
22 public:
23
24 Typesetter();
25
26 void setLineSpacing(Mf::Scalar spacing);
27
28 void print(const std::string& format, ...);
29
30 private:
31
32 Mf::Scalar mLeftBound;
33 Mf::Scalar mTopBound;
34 Mf::Scalar mLineSpacing;
35 };
36
37
38 #endif // _TYPESETTER_HH_
39
This page took 0.030608 seconds and 4 git commands to generate.