add test lib source and header

This commit is contained in:
2022-04-23 00:14:47 +02:00
parent 09249dc6e5
commit 10606465ac
2 changed files with 15 additions and 0 deletions

7
include/commons.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "commons.hpp"
#include <boost/asio.hpp>
void Test::Hello() const
{
std::cout << "Hello World\n";
}

8
include/commons.hpp Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <iostream>
class Test
{
void Hello() const;
};