2010-05-12 09:27:13 +00:00
|
|
|
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-06 00:08:41 +00:00
|
|
|
|
2010-10-18 07:13:29 +00:00
|
|
|
#ifndef NL_STDMISC_H
|
|
|
|
#define NL_STDMISC_H
|
|
|
|
|
2010-05-06 00:08:41 +00:00
|
|
|
#include "nel/misc/types_nl.h"
|
|
|
|
|
2010-06-25 09:44:58 +00:00
|
|
|
#include <algorithm>
|
2010-05-06 00:08:41 +00:00
|
|
|
#include <cmath>
|
2010-06-25 09:44:58 +00:00
|
|
|
#include <csignal>
|
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstddef>
|
2010-05-06 00:08:41 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
2010-06-25 09:44:58 +00:00
|
|
|
#include <cstring>
|
|
|
|
#include <ctime>
|
|
|
|
#include <deque>
|
2010-05-06 00:08:41 +00:00
|
|
|
#include <exception>
|
2010-06-25 09:44:58 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <iostream>
|
|
|
|
#include <limits>
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2010-05-06 00:08:41 +00:00
|
|
|
#include <memory>
|
2010-06-25 09:44:58 +00:00
|
|
|
#include <numeric>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <typeinfo>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2010-05-06 00:08:41 +00:00
|
|
|
|
|
|
|
#include "nel/misc/debug.h"
|
|
|
|
#include "nel/misc/common.h"
|
|
|
|
#include "nel/misc/fast_mem.h"
|
|
|
|
#include "nel/misc/system_info.h"
|
|
|
|
#include "nel/misc/mem_displayer.h"
|
2010-07-24 20:47:42 +00:00
|
|
|
#include "nel/misc/stream.h"
|
|
|
|
#include "nel/misc/path.h"
|
|
|
|
#include "nel/misc/string_common.h"
|
2010-09-04 17:54:22 +00:00
|
|
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
#define NOMINMAX
|
2012-05-21 08:03:08 +00:00
|
|
|
#include <WinSock2.h>
|
2010-09-04 17:54:22 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2010-10-18 07:13:29 +00:00
|
|
|
|
|
|
|
#endif // NL_STDMISC_H
|