diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-11 13:37:06 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-11 13:37:06 +0530 |
commit | 2a188a5b1789c87c39c876b448953cb88afed132 (patch) | |
tree | f33b5e365c30d034ba9efd37bc05cf2bee2bec03 /include/filehandler.h | |
parent | 5f7deaa1944016f56d2ac3cba08ca702033dbe7e (diff) |
move from using constructors to init()
Diffstat (limited to 'include/filehandler.h')
-rw-r--r-- | include/filehandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/filehandler.h b/include/filehandler.h index ac8fa88..6bb41f5 100644 --- a/include/filehandler.h +++ b/include/filehandler.h @@ -15,7 +15,7 @@ private: unsigned int size(void); public: - Filehandler(char *path); + void init(char *path); bool open(void); char *read(void); void close(void); |