-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsimmgrCommon.cpp
More file actions
65 lines (52 loc) · 1.47 KB
/
Copy pathsimmgrCommon.cpp
File metadata and controls
65 lines (52 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* simmgrCommon.cpp
*
* This file is part of the sim-mgr distribution (https://github.com/OpenVetSimDevelopers/sim-mgr).
*
* Copyright (c) 2019 VetSim, Cornell University College of Veterinary Medicine Ithaca, NY
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* The simmgr Daemon and the simmgr Demo use the common code in this file */
/*
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <syslog.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <ctype.h>
#include <stdbool.h>
#include <sys/mman.h>
#include <arpa/inet.h>
#include <sys/time.h>
#include <libgen.h>
#include <dirent.h>
#include <sys/stat.h>
#include <math.h>
#include <iostream>
#include <vector>
#include <string>
#include <cstdlib>
#include <sstream>
#include <iomanip>
#include <ctime>
#include <algorithm>
*/
#include "vetsim.h"
using namespace std;