c++/parameter-lister/info/globalcode/parameterLister/OutputModule.h
author František Kučera <franta-hg@frantovo.cz>
Tue, 05 May 2015 22:19:24 +0200
changeset 16 65f51abd5fb8
parent 12 fde958908539
child 20 0684883953ba
permissions -rw-r--r--
chooseOutputModule
     1 #ifndef OUTPUTMODULE_H
     2 #define	OUTPUTMODULE_H
     3 
     4 #include <iostream>
     5 #include <vector>
     6 
     7 namespace info {
     8 namespace globalcode {
     9 namespace parameterLister {
    10 
    11 class OutputModule {
    12 public:
    13 	/**
    14 	 * 
    15      * @param output
    16      * @param command
    17      * @param args
    18      * @return exit code
    19      */
    20 	virtual int process(std::ostream &output, std::string &command, std::vector<std::string> &args);
    21 private:
    22 
    23 };
    24 
    25 }
    26 }
    27 }
    28 
    29 #endif	/* OUTPUTMODULE_H */
    30