lazy translation implementation

This commit is contained in:
Nicholas O'Connor
2019-05-15 11:53:18 -07:00
parent 646cface46
commit 8055a01608
2 changed files with 59 additions and 0 deletions

9
include/paths.hpp Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <string>
namespace cellar {
namespace paths {
extern std::string translate(std::string in_path, bool lazy = false);
}
}