Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _ATANYSIMPLETYPE_HPP
00021 #define _ATANYSIMPLETYPE_HPP
00022
00023 #include <xercesc/util/XercesDefs.hpp>
00024 #include <xqilla/framework/XQillaExport.hpp>
00025 #include <xqilla/items/AnyAtomicType.hpp>
00026
00027 class DynamicContext;
00028
00033 class XQILLA_API ATAnySimpleType : public AnyAtomicType
00034 {
00035
00036 public:
00037
00038
00039 virtual const XMLCh* getPrimitiveTypeName() const = 0;
00040
00041
00042 virtual const XMLCh* getTypeURI() const = 0;
00043
00044
00045 virtual const XMLCh* getTypeName() const = 0;
00046
00047
00048 virtual const XMLCh* asString(const DynamicContext* context) const = 0;
00049
00050
00051
00052 virtual bool equals(const AnyAtomicType::Ptr &target, const DynamicContext* context) const = 0;
00053
00054 virtual AnyAtomicType::AtomicObjectType getPrimitiveTypeIndex() const = 0;
00055 };
00056
00057 #endif // _ATANYSIMPLETYPE_HPP