Begin templating

This commit is contained in:
2023-10-30 22:45:35 +01:00
parent e26acc3676
commit 77c33942f6
9 changed files with 64 additions and 16 deletions

View File

@@ -1,10 +1,11 @@
#include "STree.h"
#include <iostream>
namespace pywrap {
void STree::version()
{
callMethod("version");
std::cout << "Version: " << callMethod<std::string>("version") << std::endl;
}
} /* namespace pywrap */