|
XMLFormatter is a Class. As
so, u need to instantiate an object of that class before using it. First declare
a pointer to the XMLFormatter class, and then create a new instance of it using
that pointer. Remember to free it afterwards.
...{
gFormatter* XMLFormatter;
gFormatter = new XMLFormatter(<parameters of the
constructor>);
.....
delete gFormatter;
}...
Hope this will help
Jorge
|
- Imlementation Catarina Almeida
- Jorge Pozo Ramirez
