#include <config.h>
#include <list>
#include <string>
#include "DviError.h"
#include "Bitmap.h"
#include "verbosity.h"
Go to the source code of this file.
Namespaces | |
namespace | Util |
Defines | |
#define | UTIL_HEADER_READ 1 |
Typedefs | |
typedef STD::list< string > | string_list |
Functions | |
string_list & | tokenise_string (string str) |
Tokenise string at whitespace. | |
char ** | string_list_to_array (string_list &l) |
Convert a string_list to a null-terminated array of character pointers. | |
void | delete_string_array (char **sl) |
Deletes the array of strings returned by string_list_to_array. | |
bool | parseRGB (Bitmap::BitmapColour &, const char *) |
Parse an RGB specification. | |
void | verbosity (const verbosities level) |
Sets the verbosity of the methods in this class. |
|
|
|
|
|
Deletes the array of strings returned by string_list_to_array.
|
|
Parse an RGB specification.
This is either a sequence of three integers separated by slashes (or in fact any non-number character), or else a string of the form
|
|
Convert a The resulting array can conveniently be deleted using delete_string_array.
|
|
Tokenise string at whitespace.
|
|
Sets the verbosity of the methods in this class.
|