~vcs-imports/simias/trunk

« back to all changes in this revision

Viewing changes to simias/tools/gsoap/gsoap-linux-2.7/mod_gsoap/gsoap_win/isapi/samples/dime/soap2stuff.cpp

  • Committer: kalidasbala
  • Date: 2007-08-25 12:48:51 UTC
  • Revision ID: vcs-imports@canonical.com-20070825124851-vlfvzun3732ld196
Latest gsoap code update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** file to include stdsoap2.cpp here, to get around directory location problems etc.
 
2
*/
 
3
 
 
4
/* You must set the include path in Visual Studio under tools|options|directories|include anway. 
 
5
   There also the file below can be found.
 
6
*/
 
7
#include "stdsoap2.cpp"
 
8
 
 
9
#include "soapH.h"
 
10
 
 
11
xsd__base64Binary::xsd__base64Binary() 
 
12
 
13
   __ptr = NULL; 
 
14
   __size = 0; 
 
15
   id = NULL;
 
16
   type = NULL;
 
17
   options = NULL;
 
18
 
19
xsd__base64Binary::xsd__base64Binary(struct soap *soap, int n) 
 
20
 
21
   __ptr = (unsigned char*)soap_malloc(soap, n); 
 
22
   __size = n; 
 
23
   id = NULL;
 
24
   type = NULL;
 
25
   options = NULL;
 
26
 
27
xsd__base64Binary::~xsd__base64Binary() 
 
28
{ } 
 
29
unsigned char *xsd__base64Binary::location() 
 
30
 
31
   return __ptr; 
 
32
 
33
int xsd__base64Binary::size() 
 
34
 
35
   return __size; 
 
36