aboutsummaryrefslogtreecommitdiffstats
path: root/source/wav.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-11-21 11:30:41 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-11-21 11:30:41 -0500
commitc76ba69fc933a86e526855b097907a728e24568b (patch)
tree15a19b37f2702d9619ddf3c8cbf92dbe531f8b82 /source/wav.hpp
parentf6318e328402a5e839d24e7d52f5bb13062bccdc (diff)
wip: major code refactor, split most gui from logic
Diffstat (limited to 'source/wav.hpp')
-rw-r--r--source/wav.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/wav.hpp b/source/wav.hpp
index 71842bd..e20776a 100644
--- a/source/wav.hpp
+++ b/source/wav.hpp
@@ -4,6 +4,7 @@
#include <cstdint>
#include <cstring>
#include <fstream>
+#include <string>
#include <vector>
namespace wav
@@ -44,7 +45,7 @@ namespace wav
class clip {
public:
- clip(const char *path) {
+ clip(const std::string& path) {
std::ifstream file (path);
if (!file.good())
return;