Changeset 6439 for trunk/console

Show
Ignore:
Timestamp:
07/09/08 17:46:23 (5 months ago)
Author:
flynd
Message:

Removed using clause from plugin headers.

Location:
trunk/console/src
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/console/src/console.h

    r6372 r6439  
    66#endif 
    77 
    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 
    1016#include "window.h" 
    11 #include "licq_user.h" 
    12  
    13 #include <string> 
    14 using namespace std; 
     17 
     18class CFileTransferManager; 
    1519 
    1620#define MAX_CON 8 
     
    5458  char szCommand[128]; 
    5559}; 
    56 typedef list<SMacro *> MacroList; 
     60typedef std::list<SMacro*> MacroList; 
    5761 
    5862 
     
    6973  bool m_bExit; 
    7074  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 
    7478  // Set'able variables 
    7579  bool m_bShowOffline, m_bShowDividers; 
     
    8892  unsigned short m_nCurrentGroup, m_nCon; 
    8993  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; 
    9397  MacroList listMacros; 
    9498 
     
    218222struct STabCompletion 
    219223{ 
    220   vector <char *> vszPartialMatch; 
     224  std::vector<char*> vszPartialMatch; 
    221225  char *szPartialMatch; 
    222226}; 
  • trunk/console/src/console_menu.cpp

    r6372 r6439  
    11#include "console.h" 
     2 
     3#include <cctype> 
     4#include <string> 
     5 
    26#include "event_data.h" 
    37 
    4 #include <ctype.h> 
    5 #include <string> 
    6  
    7 using std::string; 
     8using namespace std; 
    89 
    910const unsigned short NUM_COMMANDS = 24; 
  • trunk/console/src/console_print.cpp

    r6373 r6439  
    11#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 
     10using namespace std; 
    811 
    912//======Utilities============================================================