ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/c++/XMLFormatter.cpp
Revision: 1.1
Committed: Thu Nov 30 21:58:30 2000 UTC (23 years, 10 months ago) by ab11
Branch: MAIN
Log Message:
XML string maker for c++

File Contents

# Content
1 #include <XMLFormatter.h>
2
3 void XMLFormatter::XMLFormatter( char* newHostInfo ){
4 hostInfo = "<"+newHostInfo+">";
5 }
6
7 void XMLFormatter::closeNest(){
8 return;
9 }
10
11 void XMLFormatter::addNest(char* nest){
12 return;
13 }
14
15 void XMLFormatter::addElement(char* element){
16 return;
17 }
18
19 char* XMLFormatter::returnXML(){
20 return "hellO";
21 }