Functions
contrib/brl/bbas/bxml/bxml_write.h File Reference

functions to write XML documents More...

#include "bxml_document.h"
#include <vcl_iostream.h>

Go to the source code of this file.

Functions

void bxml_write (const vcl_string &filepath, const bxml_document &doc)
 Write the entire contents of filepath into an XML document class.
void bxml_write (vcl_ostream &os, const bxml_document &doc)
 Write the entire data stream is into an XML document class.
void bxml_write_declaration (vcl_ostream &os, const bxml_document &doc)
 Write the document declaration (header).
void bxml_write_data (vcl_ostream &os, const bxml_data_sptr &data)
 Write the data (element or text).
void bxml_write_element (vcl_ostream &os, const bxml_element &element)
 Write the XML element.

Detailed Description

functions to write XML documents

Author:
Matt Leotta (Brown)
Date:
October 5, 2006
    Modifications
     <none yet>
   

Definition in file bxml_write.h.


Function Documentation

void bxml_write ( const vcl_string &  filepath,
const bxml_document doc 
)

Write the entire contents of filepath into an XML document class.

Definition at line 15 of file bxml_write.cxx.

void bxml_write ( vcl_ostream &  os,
const bxml_document doc 
)

Write the entire data stream is into an XML document class.

Definition at line 23 of file bxml_write.cxx.

void bxml_write_data ( vcl_ostream &  os,
const bxml_data_sptr data 
)

Write the data (element or text).

Definition at line 40 of file bxml_write.cxx.

void bxml_write_declaration ( vcl_ostream &  os,
const bxml_document doc 
)

Write the document declaration (header).

Definition at line 31 of file bxml_write.cxx.

void bxml_write_element ( vcl_ostream &  os,
const bxml_element element 
)

Write the XML element.

Definition at line 58 of file bxml_write.cxx.