File system class for use in the parser. #19
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, the
parserhandles file I/O, which does not meet the OOP principle of single responsibility classes. To resolve this violation, aFileSystemclass will be implemented.This class will be constructed wth a required string for the input file, and an optional string for the output. The class will have methods such as readInput and writeOutput. The class will abstract all filesystem operations.
Eventually, the
watchdogclass will utilize this module. But this implementation will not have that functionality. Once this issue is complete, it will be passed to @shultzp1 to complete the watchdog implementation.Close with the merging of #20 .