SoftwareEngineeringStudyProjects / KnowYourKnowledge

Combination of Personal Knowledge Management and Learning Management System. This is a study project aimed at creating relatively big codebase for object-oriented programming and similar courses.
MIT License
2 stars 4 forks source link

Create a class to process command line arguments #24

Closed kzhereb closed 1 year ago

kzhereb commented 2 years ago

class CommandLineProcessor It contains run() method that accepts argc and argv, somehow decides which method to call, then calls this method Maybe in future implement this as separate Command classes For now, just separate methods on same class (e.g. addNote(title), search(criteria), ...)

kzhereb commented 1 year ago

For now, class is static - may need to refactor later