Library: Data
Package: DataCore
Header: Poco/Data/Time.h
Time class wraps a DateTime and exposes time related interface. The purpose of this class is binding/extraction support for time fields.
Member Functions: assign, hour, minute, operator !=, operator <, operator =, operator ==, operator >, second
Time();
Creates the Time
Time(
int hour,
int minute,
int second
);
Creates the Time
~Time();
Destroys the Time.
void assign(
int hour,
int minute,
int second
);
Assigns time.
int hour() const;
Returns the hour.
int minute() const;
Returns the minute.
bool operator != (
const Time & time
) const;
Inequality operator.
bool operator < (
const Time & time
) const;
Less then operator.
Time & operator = (
const Time & t
);
Assignment operator for Time.
Time & operator = (
const DateTime & dt
);
Assignment operator for DateTime.
Time & operator = (
const Poco::Dynamic::Var & var
);
Assignment operator for Var.
bool operator == (
const Time & time
) const;
Equality operator.
bool operator > (
const Time & time
) const;
Greater then operator.
int second() const;
Returns the second.