Add separate functions for removing stroke numbers
This commit is contained in:
parent
9a0e4d8f22
commit
4943f35d91
2 changed files with 73 additions and 19 deletions
|
@ -3,18 +3,19 @@
|
|||
|
||||
#include "Settings.hpp"
|
||||
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
|
||||
namespace Kanimaji
|
||||
{
|
||||
using Path = std::filesystem::path;
|
||||
|
||||
void AnimateFile(const Path& source, const Path& destination,
|
||||
void AnimateFile(const std::string& source, const std::string& destination,
|
||||
const AnimationSettings& settings = AnimationSettings::Default());
|
||||
|
||||
std::string Animate(const std::string& source,
|
||||
const AnimationSettings& settings = AnimationSettings::Default());
|
||||
|
||||
void RemoveStrokeNumbers(const std::string& source, const std::string& destination);
|
||||
|
||||
std::string RemoveStrokeNumbers(const std::string& source);
|
||||
}
|
||||
|
||||
#endif // KANIMAJI_KANIMAJI_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue