00001 /* 00002 * Copyright 2006 Intel Corporation 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef _OASYS_XML_DOCUMENT_H_ 00018 #define _OASYS_XML_DOCUMENT_H_ 00019 00020 #include "../debug/DebugUtils.h" 00021 #include "../util/StringBuffer.h" 00022 00023 namespace oasys { 00024 00025 class XMLObject; 00026 00032 class XMLDocument { 00033 public: 00037 XMLDocument(); 00038 00042 ~XMLDocument(); 00043 00045 const std::string header() const { return header_; } 00046 const XMLObject* root() const { return root_; } 00048 00052 void set_root(XMLObject* root); 00053 00057 void add_header(const char* text, size_t len = 0); 00058 00064 void to_string(StringBuffer* buf, int indent) const; 00065 00066 protected: 00067 std::string header_; 00068 XMLObject* root_; 00069 00070 NO_ASSIGN(XMLDocument); 00071 00072 }; 00073 00074 } // namespace oasys 00075 00076 #endif /* _OASYS_XML_DOCUMENT_H_ */