I'm writing an application launcher program. The launcher will launch applications based on the files found in the working directory.
(Example: a folder containing files with the extensions .docx, .xlsx, .sln, and .txt, would give the user the option to launch Word, Excel, Visual Studio and Notepad loading any of those files specified.)
I need:
1. A Base class for my application launcher.
2. Derived classes for the following applications.
a. Microsoft Word (.docx extension)
b. Microsoft Excel (.xlsx extension)
c. Visual Studio (.sln extension)
d. 7-zip files (.7z extension)
e. Command Shell (CMD.EXE)
3. A class to manage all your launcher objects.
4. A main to prompt the user to choose which application [with file] to launch.
5. // Uses Boost filesystem version 3.
Would someone care to show me how to start one of these header files with one of the derived classes.
Thanx