#pragma once
#include <vector>
#include <string>
#include <fstream>
namespace std
{
// Define TCHAR compatible elements of string/iostream
#if defined _UNICODE || defined UNICODE
typedef wstring _tstring;
typedef wostream _tostream;
typedef wistream _tistream;
typedef wfstream _tfstream;
typedef wifstream _tifstream;
typedef wofstream _tofstream;
#define _tcout wcout
#define _tcin wcin
#define _tcerr wcerr
#define _tclog wclog
#else
typedef string _tstring;
typedef ostream _tostream;
typedef istream _tistream;
typedef fstream _tfstream;
typedef ifstream _tifstream;
typedef ofstream _tofstream;
#define _tcout cout
#define _tcin cin
#define _tcerr cerr
#define _tclog clog
#endif
}
Wednesday, August 03, 2005
Thursday, April 21, 2005
My Google Blog's Birthday
Already have a Microsoft Spaces' blog and just wanted to try what Google offers.
We will see which one I will use more often.
Today Google shares hit $204 per share mark...wow.
We will see which one I will use more often.
Today Google shares hit $204 per share mark...wow.
Subscribe to:
Posts (Atom)