You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 line
223 B

  1. class PageSettingsProvider
  2. {
  3. public:
  4. int getWidth();
  5. int getHeight();
  6. int getCharWidth(char c);
  7. int getStringWidth(char* string);
  8. int getCharSpace();
  9. int getLineHeight();
  10. int getLineSpace();
  11. };