18 lines
236 B
C++
18 lines
236 B
C++
#ifndef C0DING_LIBRARY_H
|
|
#define C0DING_LIBRARY_H
|
|
|
|
#define VERSION "1.0.0";
|
|
|
|
#include <string>
|
|
#include "network/network.h"
|
|
|
|
namespace c0ding {
|
|
void version();
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
c0ding::network::test();
|
|
}
|
|
|
|
#endif
|