Describes time.
You can find more information in comments below.
struct DbTime
{
unsigned short Hour;
unsigned short Minute;
unsigned short Second;
explicit operator String() const; // Convert to Unicode string in HH:MM:SS format
explicit operator AnsiString() const; // Convert to ANSI string in HH:MM:SS format
bool operator==(const DbTime &other) const;
bool operator!=(const DbTime &other) const;
};
Namespace: | nitisa |
Include: | Nitisa/Db/DbTime.h |