14 lines
172 B
C++
14 lines
172 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();
|
|
}
|
|
|
|
#endif
|