repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git]
/
ACE
/
ACEXML
/
common
/
XMLFilterImpl.inl
blob
76b43286d4ee9825bc4b2c0ec438a4514e03c55e
1
// -*- C++ -*-
2
3
ACEXML_INLINE int
4
ACEXML_XMLFilterImpl::setupParser ()
5
{
6
if (this->parent_ == 0)
7
return -1;
8
9
this->parent_->setEntityResolver (this);
10
this->parent_->setDTDHandler (this);
11
this->parent_->setContentHandler (this);
12
this->parent_->setErrorHandler (this);
13
return 0;
14
}