16 lines
134 B
C++
16 lines
134 B
C++
|
|
#include <iostream>
|
||
|
|
|
||
|
|
#include "utils.hpp"
|
||
|
|
#include "TestClass.hpp"
|
||
|
|
|
||
|
|
using std::cout;
|
||
|
|
using std::endl;
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|