diff --git a/ProblemSelection.hpp b/ProblemSelection.hpp index 855dd8a..4950f21 100644 --- a/ProblemSelection.hpp +++ b/ProblemSelection.hpp @@ -1,8 +1,24 @@ -//ProjectEulerCPP/ProblemSelection.hpp +//ProjectEuler/ProjectEulerCPP/ProblemSelection.hpp //Mattrixwv // Created: 07-08-20 -//Modified: 07-08-20 +//Modified: 07-09-20 //This is a header file with a few functions to help select and run problems +/* + Copyright (C) 2020 Matthew Ellison + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ #ifndef PROBLEMSELECTION_HPP diff --git a/main.cpp b/main.cpp index cc5967d..2749905 100644 --- a/main.cpp +++ b/main.cpp @@ -1,9 +1,25 @@ -//ProjectEuler/C++/main.cpp +//ProjectEuler/ProjectEulerCPP/main.cpp //Matthew Ellison // Created: 07-04-19 -//Modified: 06-19-20 +//Modified: 07-09-20 //This is a driver function for all Project Euler problems //It prompts the user for an action (state the problem or solve the problem), then executes the appropriate command on the appropriate problem +/* + Copyright (C) 2020 Matthew Ellison + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . +*/ #include