aboutsummaryrefslogtreecommitdiff
path: root/include/filehandler.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-06-11 14:28:52 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-06-11 14:28:52 +0530
commit62c6b6a9a90119e6750be2bdd4f546c26f6d7b84 (patch)
tree1e23257ae4d11b1765a2e56b2a0505a5861c199c /include/filehandler.h
parentb272374fdde09d4691d3b3090e10266f5b64e64e (diff)
refactor members to have a m_ prefix
Diffstat (limited to 'include/filehandler.h')
-rw-r--r--include/filehandler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/filehandler.h b/include/filehandler.h
index 6bb41f5..859f0c3 100644
--- a/include/filehandler.h
+++ b/include/filehandler.h
@@ -7,9 +7,9 @@
class Filehandler
{
private:
- FILE *f;
- char *path;
- char *buffer;
+ FILE *m_file;
+ char *m_path;
+ char *m_buffer;
private:
unsigned int size(void);