Add Debian 12 C++23 toolchain, plumb args
This commit is contained in:
parent
aea51d9e77
commit
e1af823502
4 changed files with 41 additions and 2 deletions
|
@ -1,9 +1,20 @@
|
|||
#include "Kanimaji/Kanimaji.hpp"
|
||||
|
||||
#include <ctre.hpp>
|
||||
#include <pugixml.hpp>
|
||||
|
||||
namespace Kanimaji
|
||||
{
|
||||
bool Animate(const std::string& source, const std::string& destination)
|
||||
{
|
||||
pugi::xml_document doc;
|
||||
pugi::xml_parse_result res = doc.load_file(source.c_str());
|
||||
if (!res) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue