-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCallback.cpp
45 lines (34 loc) · 985 Bytes
/
Callback.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Callback.cpp: implementation of the Callback class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Callback.h"
#include "../Interface/IParserDispatcher.h"
#include <stdio.h>
Callback::Callback( ICore* _pCore, char* _pXmlDocument )
{
m_pCore = _pCore;
m_pXmlDocument = _pXmlDocument;
}
Callback::~Callback()
{
}
void Callback::ElementParsed( XMLObject* _pXMLO )
{
IParserDispatcher* pParserDispatcher = NULL;
m_pCore->QueryDispatcher( IID_QUERY::EASCII_DISPATCHER,
( IPluginCore** )&pParserDispatcher );
if( pParserDispatcher != NULL )
{
int iLen = 0;
char* pName = pParserDispatcher->GetElement( m_pXmlDocument,
_pXMLO, &iLen );
pParserDispatcher->Release();
char* pElement = new char[ iLen + 1];
memset( pElement, 0, iLen + 1 );
memcpy( pElement, pName, iLen );
printf( pElement );
printf( "\n" );
delete[] pElement;
}
}