generated from AfonsoCMSousa/CPP-Template
19 lines
294 B
C++
19 lines
294 B
C++
#include <cstddef>
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "file.hpp" // for parce_args
|
|
#include "net.hpp" // for socket operations
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char *argv[]) {
|
|
app_info app = parce_args(argc, argv);
|
|
|
|
|
|
return 0;
|
|
}
|
|
|