InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SoapClientUtils.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner:
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef SoapClientUtils_H
25 #define SoapClientUtils_H
26 
27 #include "soapH.h"
28 using namespace std;
29 
30 void ShowAny(const IDSP__Data* dataHolder);
31 
32 void ShowAsBool(const IDSP__Data* dataHolder);
33 void ShowAsDouble(const IDSP__Data* dataHolder);
34 void ShowAsFloat(const IDSP__Data* dataHolder);
35 void ShowAsInt(const IDSP__Data* dataHolder);
36 void ShowAsLong(const IDSP__Data* dataHolder);
37 void ShowAsString(const IDSP__Data* dataHolder);
38 
39 void ShowAsIdspEnumeration(const IDSP__Data* dataHolder);
40 void ShowAsIdspList(const IDSP__Data* dataHolder);
41 void ShowAsIdspObject(const IDSP__Data* dataHolder);
42 void ShowAsIdspObject(const IDSP__Object* dataHolder);
43 void ShowAsIdspObjectList(const IDSP__Data* dataHolder);
44 void ShowAsIdspRecord(const IDSP__Data* dataHolder);
45 void ShowAsIdspUnit(const IDSP__Data* dataHolder);
46 
47 void ShowAsStdString(const IDSP__Data* dataHolder);
48 
49 void ShowAsXsdBoolean(const IDSP__Data* dataHolder);
50 void ShowAsXsdDateTime(const IDSP__Data* dataHolder);
51 void ShowAsXsdDouble(const IDSP__Data* dataHolder);
52 void ShowAsXsdFloat(const IDSP__Data* dataHolder);
53 void ShowAsXsdInt(const IDSP__Data* dataHolder);
54 void ShowAsXsdAnyUri(const IDSP__Data* dataHolder);
55 
56 std::string unsigned_long_to_string(unsigned long valueToConvert);
57 
58 void ShowAnyForUxpScript(const IDSP__Data* dataHolder);
59 
60 #endif //SoapClientUtils_H