- Timestamp:
- 07/09/08 17:46:23 (5 months ago)
- Location:
- trunk/rms/src
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/rms/src/rms.cpp
r6410 r6439 2 2 #include "config.h" 3 3 #endif 4 5 #include "rms.h" 4 6 5 7 #include <cctype> … … 17 19 #endif 18 20 19 #include "rms.h" 20 #include "licq_log.h" 21 #include "licq_icqd.h" 22 #include "licq_file.h" 23 #include "licq_socket.h" 24 #include "licq_user.h" 25 #include "licq_constants.h" 21 #include <licq_constants.h> 22 #include <licq_icqd.h> 23 #include <licq_file.h> 24 #include <licq_log.h> 25 #include <licq_socket.h> 26 #include <licq_user.h> 27 28 using namespace std; 26 29 27 30 extern "C" { const char *LP_Version(); } -
trunk/rms/src/rms.h
r4526 r6439 6 6 #endif 7 7 8 #include "licq_socket.h"8 #include <list> 9 9 10 #include <li st>10 #include <licq_socket.h> 11 11 12 12 class CICQDaemon; … … 18 18 class CLogService_Plugin; 19 19 20 using namespace std;21 22 20 const unsigned short MAX_LINE_LENGTH = 1024 * 1; 23 21 const unsigned short MAX_TEXT_LENGTH = 1024 * 8; 24 22 25 typedef list<class CRMSClient*> ClientList;26 typedef list<unsigned long> TagList;23 typedef std::list<class CRMSClient*> ClientList; 24 typedef std::list<unsigned long> TagList; 27 25 28 26 class CLicqRMS
