18 lines
324 B
C++
18 lines
324 B
C++
#ifndef SRV_DEFINE_H__
|
|
#define SRV_DEFINE_H__
|
|
|
|
#include "../SQCSim-common/define.h"
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <cctype>
|
|
#include <string>
|
|
|
|
#define MAX_CONNECTIONS 16
|
|
#define ID_LIST_SIZE 127
|
|
#define BUFFER_LENGTH 150
|
|
|
|
typedef unsigned char LogDest;
|
|
enum LOG_DEST { CONSOLE, LOGFILE, LOG_LAST };
|
|
|
|
#endif
|