Subversion Repositories tpanel

Rev

Rev 318 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 318 Rev 326
Line 20... Line 20...
20
#include "tpagemanager.h"
20
#include "tpagemanager.h"
21
#include "terror.h"
21
#include "terror.h"
22
#include "tresources.h"
22
#include "tresources.h"
23
#include "tconfig.h"
23
#include "tconfig.h"
24
#include "texpat++.h"
24
#include "texpat++.h"
-
 
25
#if TESTMODE == 1
-
 
26
#include "testmode.h"
-
 
27
#endif
25
 
28
 
26
#include <string>
29
#include <string>
27
#include <vector>
30
#include <vector>
28
 
31
 
29
#if __cplusplus < 201402L
32
#if __cplusplus < 201402L
Line 249... Line 252...
249
    { "^SDR", true, true, ',' },
252
    { "^SDR", true, true, ',' },
250
    { "^SHA", true, false, ',' },
253
    { "^SHA", true, false, ',' },
251
    { "^SHD", true, true, ',' },
254
    { "^SHD", true, true, ',' },
252
    { "^SSH", true, true, ',' },
255
    { "^SSH", true, true, ',' },
253
    { "^STG", true, true, ',' },
256
    { "^STG", true, true, ',' },
-
 
257
    { "^MUT", false, true, ',' },
254
    { "", false, false, '\0' }
258
    { "", false, false, '\0' }
255
};
259
};
256
 
260
 
257
CMD_DEFINATIONS& findCmdDefines(const string& cmd)
261
CMD_DEFINATIONS& findCmdDefines(const string& cmd)
258
{
262
{
Line 518... Line 522...
518
            }
522
            }
519
        }
523
        }
520
    }
524
    }
521
 
525
 
522
    MSG_WARNING("Command \"" << cmd << "\" currently not supported!");
526
    MSG_WARNING("Command \"" << cmd << "\" currently not supported!");
-
 
527
#if TESTMODE == 1
-
 
528
    __done = true;
-
 
529
#endif
523
    return false;
530
    return false;
524
}
531
}
525
 
532
 
526
bool TAmxCommands::extractChannels(const string& schan, vector<int>* ch)
533
bool TAmxCommands::extractChannels(const string& schan, vector<int>* ch)
527
{
534
{