Skip to content

Commit

Permalink
:3
Browse files Browse the repository at this point in the history
  • Loading branch information
cHoBi committed Oct 7, 2008
1 parent e246561 commit 7ddbaa5
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 469 deletions.
15 changes: 4 additions & 11 deletions lib/DOM/DOMException.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/// @file dom_exception.h
/// @brief This file includes the dom exception definitions.

/****************************************************************************
* XML++ is a library for working with XML files. *
* Copyright (C) 2008 cHoBi *
* XML++ is a library for working with XML files. *
* Copyleft meh. *
* *
* This file is part of XML++ *
* *
Expand All @@ -21,17 +18,13 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
****************************************************************************/

#if !defined (XMLPP_DOM_EXCEPTION)
#define XMLPP_DOM_EXCEPTION TRUE

#include "exception.h"
#if !defined (XMLPP_DOMEXCEPTION_H)
#define XMLPP_DOMEXCEPTION_H

namespace xmlpp {

namespace DOM {



class DOMException : public std::exception
{
public:
Expand Down
2 changes: 1 addition & 1 deletion lib/DOM/Node.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define XMLPP_DOM_NODE

#include "../common.h"
#include "DOMNamedNodeMap.h"
#include "NamedNodeMap.h"

namespace xmlpp {

Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SUBDIRS = DOM XML

h_sources = xml++.h common.h utils.h
h_sources = xml++.h common.h DOM.h XML.h Utils.h
cc_sources = utils.cpp
library_includedir=/usr/include/xml++
library_include_HEADERS = $(h_sources)
Expand Down
9 changes: 6 additions & 3 deletions lib/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,20 @@
#include <cstdlib>
#include <cstdio>

#include "exception/exception.h"
#include "utils.h"
#include "DOM/DOMException.h"
#include "Utils.h"

namespace xmlpp {

namespace DOM {

typedef std::string DOMString;
typedef unsigned long long DOMTimeStamp;
typedef unsigned short DOMNodeType;
typedef unsigned short DOMDocumentPosition;
typedef void* DOMUserData;
typedef void* DOMObject;

};

};

Expand Down
31 changes: 0 additions & 31 deletions lib/dom.h

This file was deleted.

Loading

0 comments on commit 7ddbaa5

Please sign in to comment.