forked from ozkryn/EPOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.h
More file actions
executable file
·24 lines (20 loc) · 735 Bytes
/
main.h
File metadata and controls
executable file
·24 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <getopt.h>
#include <libgen.h> // basename()
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
#include <iomanip>
#include "CommandDownload.h"
#include "CommandUpload.h"
#include "MasterDevice.h"
#include <unistd.h>
#include <string>
#include <QApplication>
/*****************************************************************************/
string commandNameM;
Command::StringVector commandArgsM;
/*****************************************************************************/
inline int sendUploadCommand(string, string, string, string);
inline int sendDownloadCommand(string, string, string, string, string);
inline void initEPOS3();
/****************************************************************************/