Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
datetime.cpp
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 3k
Category:
Game Server Simulator
Development Platform:
C/C++
- #include <windows.h>
- #include "datetime2.hh"
- #include <iomanip>
- using namespace std;
- //---------------------------------------------------------------
- ostream& mysql_date::out_stream (ostream& s) const
- {
- char fill = s.fill('0');
- ios::fmtflags flags = s.setf(ios::right);
- s << setw(4) << year << '-'
- << setw(2) << month << '-'
- << setw(2) << day;
- s.flags(flags);
- s.fill(fill);
- return s;
- }
- //-------------------------------------------------------------
- ostream& mysql_time::out_stream (ostream& s) const
- {
- char fill = s.fill('0');
- ios::fmtflags flags = s.setf(ios::right);
- s << setw(2) << hour << ':'
- << setw(2) << minute << ':'
- << setw(2) << second;
- s.flags(flags);
- s.fill(fill);
- return s;
- }
- //-------------------------------------------------------------
- ostream& MysqlDateTime::out_stream (ostream& s) const
- {
- mysql_date::out_stream(s);
- s << " ";
- mysql_time::out_stream(s);
- return s;
- }
- //-------------------------------------------------------------
- cchar* mysql_date::convert (cchar* str)
- {
- char num[5];
- num[0] =*str++; num[1] =*str++; num[2] =*str++; num[3] =*str++; num[4] = 0;
- year = strtol(num,0,10);
- if (*str == '-') str++;
- num[0] = *str++; num[1] = *str++; num[2] = 0;
- month = strtol(num,0,10);
- if (*str == '-') str++;
- num[0] = *str++; num[1] = *str++; num[2] = 0;
- day = strtol(num,0,10);
- return str;
- }
- //-------------------------------------------------------------
- string& mysql_date::convert(string& str)
- {
- convert(str.c_str());
- return str ;
- }
- //-------------------------------------------------------------
- cchar* mysql_time::convert (cchar* str)
- {
- char num[5];
- num[0] = *str++; num[1] = *str++; num[2] = 0;
- hour = strtol(num,0,10);
- if (*str == ':') str++;
- num[0] = *str++; num[1] = *str++; num[2] = 0;
- minute = strtol(num,0,10);
- if (*str == ':') str++;
- num[0] = *str++; num[1] = *str++; num[2] = 0;
- second = strtol(num,0,10);
- return str;
- }
- //-------------------------------------------------------------
- string& mysql_time::convert(string& str)
- {
- convert(str.c_str());
- return str ;
- }
- //-------------------------------------------------------------
- cchar* MysqlDateTime::convert (cchar* str)
- {
- str = mysql_date::convert(str);
- if (*str == ' ') str++;
- str = mysql_time::convert(str);
- return str;
- }
- //-------------------------------------------------------------
- string& MysqlDateTime::convert(string& str)
- {
- convert(str.c_str());
- return str ;
- }
- //-------------------------------------------------------------
- short int mysql_date::compare(const mysql_date* other) const
- {
- if (year != other->year) return year - other->year;
- if (month != other->month) return month - other->month;
- return day - other->day;
- }
- //-------------------------------------------------------------
- short int mysql_time::compare(const mysql_time* other) const
- {
- if (hour != other->hour) return hour - other->hour;
- if (minute != other->minute) return minute - other->minute;
- return minute - other->minute;
- }
- //-------------------------------------------------------------
- short int MysqlDateTime::compare(const MysqlDateTime &other) const
- {
- int x;
- x = mysql_date::compare(&other);
- if (x) return x;
- return mysql_time::compare(&other);
- }
- //end of file ==================================================