Initial commit

This commit is contained in:
attermann 2023-10-06 17:24:48 -06:00
parent d3ea0eedd9
commit eef5f1b326
29 changed files with 3073 additions and 0 deletions

14
src/Link.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "Link.h"
#include "Log.h"
using namespace RNS;
Link::Link() {
log("Link object created", LOG_EXTREME);
}
Link::~Link() {
log("Link object destroyed", LOG_EXTREME);
}