Deprecated. Encapsulates vendor-specific date structures.
More...
#include <rw/db/dbdatevec.h>
- Deprecated:
- As of SourcePro 6, use RWDateTime and RWDBTBuffer<RWDateTime> instead.
RWDBVendorDate is used to encapsulate vendor-specific date structures. RWDBDateVector is an array of RWDBVendorDate objects. Methods are provided to transfer date values between RWDBVendorDate and RWDBDateTime.
- Synopsis
#include <rw/db/dbdatevec.h>
- Example
In the following example, a vector dateVector
is produced. The vector is initialized with the current date and the following four days:
for (int k = 0; k < 5; k++) {
dateVector[k] = dt;
}
Copies the date held in datetime to self.
Returns a string representation of the date
held in self.
Conversion operator. Returns an RWDBDateTime representation of self.
Assigns the date value held in date to self.
Assigns the date value held in dt to self.