hi,
I want to create a pool of DOM Parser instances in my program and later use
that pool for handling councurrent parsing requests.
i wrote following lines :
DOMParser arrayDOM[XMLparserpoolsize];
for (int idx=0;idx< XMLparserpoolsize ; idx++)
{
arrayDOM[idx] = new DOMParser();
}
is the above code correct ??
please tell me if there is a better way to create Parser instance pool in
C++ ??
thanks
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]