home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- * global_basic.h - global header
- *
- * Copyright (C) 2003 - 2008 Florian Richter
- ***************************************************************************/
- /*
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #ifndef SMC_GLOBAL_BASIC_H
- #define SMC_GLOBAL_BASIC_H
-
- /* *** *** *** *** *** *** *** Debugging *** *** *** *** *** *** *** *** *** *** */
-
- #ifdef _WIN32
- #ifndef __WIN32__
- #define __WIN32__
- #endif
- #ifdef _DEBUG
- // disable possible loss of data
- #pragma warning ( disable : 4267 )
- #endif
-
- // disable needs to have dll-interface to be used by clients of class 'CEGUI::TreeItem'
- #pragma warning ( disable : 4251 )
-
- // disable Visual Studio 8 warnings
- #if _MSC_VER >= 1400
- #ifndef _CRT_SECURE_NO_DEPRECATE
- #define _CRT_SECURE_NO_DEPRECATE
- #endif
- #ifndef _CRT_NON_CONFORMING_SWPRINTFS
- #define _CRT_NON_CONFORMING_SWPRINTFS
- #endif
- #endif
- #endif
-
- // debug printf macro
- #ifdef _DEBUG
- #define debug_print(format, ...) printf(format, ##__VA_ARGS__)
- #else
- #define debug_print(format, ...) (0)
- #endif
-
- /* *** *** *** *** *** *** *** Standard setup *** *** *** *** *** *** *** *** *** *** */
-
- #include <iostream>
- #include <fstream>
- #include <sstream>
- #include <string>
- #include <vector>
- #include <time.h>
- #include <math.h>
- #include <algorithm>
-
- #ifdef _MSC_VER
- #define snprintf _snprintf
- #endif
-
- using std::sort;
- using std::string;
- using std::vector;
- using std::flush;
- using std::ifstream;
- using std::fstream;
- using std::ofstream;
- using std::stringstream;
- using std::ios;
-
- #endif
-