~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to AspectC++/RepoXMLNode.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#include "RepoXMLNode.h"
20
20
 
 
21
bool RepoXMLNode::has_prop (const char* prop) {
 
22
  return xmlHasProp (_node, (xmlChar*)prop) != NULL;
 
23
}
 
24
 
21
25
void RepoXMLNode::set_str_prop (const char* prop, const char* val) {
22
26
  xmlSetProp (_node, (xmlChar*)prop, (xmlChar*)val);
23
27
}