34 lines
765 B
C++
34 lines
765 B
C++
//****************************************************************************
|
|
// Filename: XmlFwdDecls.h
|
|
// Copyright 1999 Daniel X. Pape. All rights reserved.
|
|
//
|
|
// Description: Just some forward declarations for external classes to
|
|
// include.
|
|
//
|
|
//****************************************************************************
|
|
// Revision History:
|
|
// Tuesday, September 28, 1999 - Original
|
|
//****************************************************************************
|
|
|
|
#ifndef _XMLFWDDECLS_H_
|
|
#define _XMLFWDDECLS_H_
|
|
|
|
#include <vector>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
namespace SimpleXMLParser
|
|
{
|
|
|
|
class Attribute;
|
|
class Element;
|
|
class ElementNull;
|
|
|
|
typedef std::map<std::string, std::string> Attributes;
|
|
typedef std::vector<Element*> Elements;
|
|
|
|
}
|
|
|
|
#endif
|
|
|