dvi2bitmap  dvi2bitmap1.0
Util.h
Go to the documentation of this file.
1 /* This file is part of dvi2bitmap; see README for copyrights and licence */
2 
3 #ifndef UTIL_HEADER_READ
4 #define UTIL_HEADER_READ 1
5 
6 #include <config.h>
7 
8 //#include <vector>
9 #include <list>
10 #include <string>
11 
12 #include "DviError.h"
13 #include "Bitmap.h"
14 #include "verbosity.h"
15 
16 typedef STD::list<string> string_list;
17 
18 namespace Util
19 {
20  string_list& tokenise_string (string str);
22  void delete_string_array(char** sl);
23  bool parseRGB (Bitmap::BitmapColour&, const char*);
24 
25  void verbosity (const verbosities level);
26 }
27 
28 #endif /* UTIL_HEADER_READ */