Qt 4.8
Public Functions | List of all members
QPatternist::AbstractDateTimeToGYearCaster Class Reference

Casts a xs:date or xs:dateTime atomic value to xs:gYear. More...

#include <qatomiccasters_p.h>

Inheritance diagram for QPatternist::AbstractDateTimeToGYearCaster:
QPatternist::AtomicCaster QPatternist::AtomicTypeVisitorResult QSharedData

Public Functions

virtual Item castFrom (const Item &from, const QExplicitlySharedDataPointer< DynamicContext > &context) const
 
- Public Functions inherited from QPatternist::AtomicCaster
 AtomicCaster ()
 
virtual ~AtomicCaster ()
 
- Public Functions inherited from QPatternist::AtomicTypeVisitorResult
 AtomicTypeVisitorResult ()
 
virtual ~AtomicTypeVisitorResult ()
 
- Public Functions inherited from QSharedData
 QSharedData ()
 Constructs a QSharedData object with a reference count of 0. More...
 
 QSharedData (const QSharedData &)
 Constructs a QSharedData object with reference count 0. More...
 

Additional Inherited Members

- Public Types inherited from QPatternist::AtomicCaster
typedef QExplicitlySharedDataPointer< AtomicCasterPtr
 
- Public Types inherited from QPatternist::AtomicTypeVisitorResult
typedef QExplicitlySharedDataPointer< AtomicTypeVisitorResultPtr
 
- Public Variables inherited from QSharedData
QAtomicInt ref
 

Detailed Description

Casts a xs:date or xs:dateTime atomic value to xs:gYear.

Author
Frans Englich frans.nosp@m..eng.nosp@m.lich@.nosp@m.noki.nosp@m.a.com

Definition at line 476 of file qatomiccasters_p.h.

Functions

◆ castFrom()

Item AbstractDateTimeToGYearCaster::castFrom ( const Item from,
const QExplicitlySharedDataPointer< DynamicContext > &  context 
) const
virtual

Casts from to an atomic value of the type this class casts to, and returns that value. The context is used for reporting errors in case the casting fails, and to in general access information from the dynamic context.

Implements QPatternist::AtomicCaster.

Definition at line 264 of file qatomiccasters.cpp.

266 {
267  QDateTime dt(from.as<AbstractDateTime>()->toDateTime());
268  // TODO DT dt.setDateOnly(true);
269 
270  return GYear::fromDateTime(dt);
271 }
Base class for classes implementing values related to time, date or both.
const QDateTime & toDateTime() const
The QDateTime class provides date and time functions.
Definition: qdatetime.h:216
TCastTarget * as() const
Definition: qitem_p.h:278
static GYear::Ptr fromDateTime(const QDateTime &dt)
Definition: qgyear.cpp:83

The documentation for this class was generated from the following files: