ICP  1
stdafx.h
Go to the documentation of this file.
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently,
3 // but are changed infrequently
4 
5 #pragma once
6 
7 #ifndef STRICT
8 #define STRICT
9 #endif
10 
11 #define NOMINMAX
12 
13 #include "targetver.h"
14 
15 //#define _ATL_APARTMENT_THREADED
16 #define _ATL_FREE_THREADED
17 
18 #define _ATL_NO_AUTOMATIC_NAMESPACE
19 
20 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
21 
22 #define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW
23 
24 #include "resource.h"
25 #include <atlbase.h>
26 #include <atlcom.h>
27 #include <atlctl.h>
28 //#include <atlwin.h>
29 //#include <atltypes.h>
30 //#include <atlhost.h>
31 
32 #include <stdio.h>
33 #include <iostream>
34 #include <sstream>
35 #include <list>
36 #include <map>
37 #include <set>
38 #include <vector>
39 #include <sys/timeb.h>
40 #include <algorithm>
41 #include <math.h>
42 #include <stdint.h>
43 
44 #include <boost/bind.hpp>
45 #include <boost/function.hpp>
46 #include <boost/signals2.hpp>
47 #include <boost/array.hpp>
48 #include <boost/iterator/transform_iterator.hpp>
49 
50 #include <Poco/Notification.h>
51 #include <Poco/NotificationCenter.h>
52 #include <Poco/BasicEvent.h>
53 #include <Poco/Observer.h>
54 #include <Poco/NObserver.h>
55 #include <Poco/AutoPtr.h>
56 #include <Poco/MemoryPool.h>
57 #include <Poco/Path.h>
58 #include "Poco/Util/Application.h"
59 #include "Poco/String.h"
60 #include "Poco/Environment.h"
61 #include "Poco/Format.h"
62 #include "Poco/LogStream.h"
63 #include "Poco/NamedMutex.h"
64 #include "Poco/TaskManager.h"
65 #include <Poco/TaskNotification.h>
66 #include <Poco/NotificationQueue.h>
67 #include <Poco/Semaphore.h>
68 #include "Poco/RWLock.h"
69 
70 #include "Poco/Net/TCPServer.h"
71 #include "Poco/Net/TCPServerConnection.h"
72 #include "Poco/Net/TCPServerConnectionFactory.h"
73 #include "Poco/Net/TCPServerParams.h"
74 #include "Poco/Net/StreamSocket.h"
75 #include "Poco/Net/ServerSocket.h"
76 
77 #include "Poco/Net/HTTPServer.h"
78 
79 using namespace ATL;