forked from sixonionpotatoes/commons
add test lib source and header
This commit is contained in:
7
include/commons.cpp
Normal file
7
include/commons.cpp
Normal 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
8
include/commons.hpp
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
class Test
|
||||||
|
{
|
||||||
|
void Hello() const;
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user