23 lines
547 B
C++
23 lines
547 B
C++
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file xml_helpers.h
|
|
* @author drose
|
|
* @date 2012-09-28
|
|
*/
|
|
|
|
#ifndef XML_HELPERS_H
|
|
#define XML_HELPERS_H
|
|
|
|
#include "get_tinyxml.h"
|
|
|
|
bool parse_bool_attrib(TiXmlElement *xelem, const std::string &attrib,
|
|
bool default_value);
|
|
|
|
#endif
|