Changeset 6439 for trunk/console
- Timestamp:
- 07/09/08 17:46:23 (5 months ago)
- Location:
- trunk/console/src
- Files:
-
- 3 modified
-
console.h (modified) (5 diffs)
-
console_menu.cpp (modified) (1 diff)
-
console_print.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/console/src/console.h
r6372 r6439 6 6 #endif 7 7 8 #include "licq_icqd.h" 9 #include "licq_log.h" 8 #include <list> 9 #include <string> 10 #include <vector> 11 12 #include <licq_icqd.h> 13 #include <licq_log.h> 14 #include <licq_user.h> 15 10 16 #include "window.h" 11 #include "licq_user.h" 12 13 #include <string> 14 using namespace std; 17 18 class CFileTransferManager; 15 19 16 20 #define MAX_CON 8 … … 54 58 char szCommand[128]; 55 59 }; 56 typedef list<SMacro*> MacroList;60 typedef std::list<SMacro*> MacroList; 57 61 58 62 … … 69 73 bool m_bExit; 70 74 fd_set fdSet; 71 list <SUser*> m_lUsers;72 list <SScrollUser*> m_lScrollUsers;73 75 std::list<SUser*> m_lUsers; 76 std::list<SScrollUser*> m_lScrollUsers; 77 74 78 // Set'able variables 75 79 bool m_bShowOffline, m_bShowDividers; … … 88 92 unsigned short m_nCurrentGroup, m_nCon; 89 93 GroupType m_nGroupType; 90 list<char*> m_lCmdHistory;91 list<char*>::iterator m_lCmdHistoryIter;92 list<CFileTransferManager*> m_lFileStat;94 std::list<char*> m_lCmdHistory; 95 std::list<char*>::iterator m_lCmdHistoryIter; 96 std::list<CFileTransferManager*> m_lFileStat; 93 97 MacroList listMacros; 94 98 … … 218 222 struct STabCompletion 219 223 { 220 vector <char*> vszPartialMatch;224 std::vector<char*> vszPartialMatch; 221 225 char *szPartialMatch; 222 226 }; -
trunk/console/src/console_menu.cpp
r6372 r6439 1 1 #include "console.h" 2 3 #include <cctype> 4 #include <string> 5 2 6 #include "event_data.h" 3 7 4 #include <ctype.h> 5 #include <string> 6 7 using std::string; 8 using namespace std; 8 9 9 10 const unsigned short NUM_COMMANDS = 24; -
trunk/console/src/console_print.cpp
r6373 r6439 1 1 #include "console.h" 2 #include "licq_countrycodes.h" 3 #include "licq_languagecodes.h" 4 #include "licq_filetransfer.h" 5 6 #include <string.h> 7 #include <time.h> 2 3 #include <cstring> 4 #include <ctime> 5 6 #include <licq_countrycodes.h> 7 #include <licq_languagecodes.h> 8 #include <licq_filetransfer.h> 9 10 using namespace std; 8 11 9 12 //======Utilities============================================================
