SQCSimulator2023/SQCSim-srv/define.h

14 lines
271 B
C
Raw Normal View History

2023-09-24 11:07:03 -04:00
#ifndef SRV_DEFINE_H__
#define SRV_DEFINE_H__
2023-09-24 08:45:40 -04:00
#include "../SQCSim-common/define.h"
#include <iostream>
#include <sstream>
#include <cctype>
#include <string>
2023-09-24 11:07:03 -04:00
#define MAX_CONNECTIONS 16
typedef unsigned char LogDest;
enum LOG_DEST { CONSOLE, LOGFILE, LOG_LAST };
2023-09-24 08:45:40 -04:00
#endif