//********************************************************************
//
// COPYRIGHT:
//
// The computer systems, procedures, data bases and
// programs created and maintained by DST Systems, Inc.,
// are proprietary in nature and as such are confidential.
// Any unauthorised use or disclosure of such information
// may result in civil libabilities.
//
// Copyrihgt 2002 by DST Systems, Inc.
//
//********************************************************************
#include "stdafx.h"
#include "AwdSaxHandler.hpp"
#include <fstream>

std::ofstream gLog( "AwdSaxHandler.log" );
AwdSaxHandler::AwdSaxHandler( )
{
  gLog << "Constructing AwdSaxHandler" << std::endl;
}

AwdSaxHandler::~AwdSaxHandler()
{
  gLog << "Destructing AwdSaxHandler" << std::endl;
}

Dataset * AwdSaxHandler::getDataset()
{
  return NULL;
}

void  AwdSaxHandler::characters( const XMLCh *chars,
                                 const unsigned int length )
{
  gLog << "Entering AwdSaxHandler::characters" << std::endl;
}

void AwdSaxHandler::endCDATA(  )
{
  gLog << "Entering AwdSaxHandler::endCDATA" << std::endl;
}

void AwdSaxHandler::endDocument(  )
{
  gLog << "Entering AwdSaxHandler::endDocument" << std::endl;
}

void AwdSaxHandler::endElement( const XMLCh *uri,
                                const XMLCh *localName,
                                const XMLCh *qname  )
{
  gLog << "Entering AwdSaxHandler::endElement" << std::endl;
}

void AwdSaxHandler::setDocumentLocator(const Locator * const locator )
{
  gLog << "Entering AwdSaxHandler::setDocumentLocator" << std::endl;
}

void AwdSaxHandler::startDocument()
{
  gLog << "Entering AwdSaxHandler::startDocument" << std::endl;
}

void AwdSaxHandler::startElement( const XMLCh * const uri,
                                  const XMLCh * const localName,
                                  const XMLCh * const qname,
                                  const Attributes &attrs )
{
  gLog << "Entering AwdSaxHandler::startElement" << std::endl;
}

void AwdSaxHandler::startCDATA( )
{
  gLog << "Entering AwdSaxHandler::startCDATA" << std::endl;
}

void AwdSaxHandler::indent()
{
}
