X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTypesetter.hh;h=82d94fac1aebb3eb13e595105bff9dd7a9950ddd;hp=d9ccf4284c8c9b01e4bd71e92d0b5fe24fc05fad;hb=a31d65a998121df0651c57bfb68782e2a07d2e2f;hpb=7d15b919681bb9ec0088b4b27c6abf62d6dfb9b1 diff --git a/src/Typesetter.hh b/src/Typesetter.hh index d9ccf42..82d94fa 100644 --- a/src/Typesetter.hh +++ b/src/Typesetter.hh @@ -31,22 +31,24 @@ #include -#include "math.hh" +#include class Typesetter { public: + Typesetter(); - void setLineSpacing(dc::scalar spacing); + void setLineSpacing(Mf::Scalar spacing); void print(const std::string& format, ...); private: - dc::scalar leftBound; - dc::scalar topBound; - dc::scalar lineSpacing; + + Mf::Scalar mLeftBound; + Mf::Scalar mTopBound; + Mf::Scalar mLineSpacing; };