Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

expandlib-cmd.h

Go to the documentation of this file.
00001 
00002 /* This file is part of Expandlib.
00003 
00004   Copyright (C) 2002 Jasper van de Gronde
00005 
00006   This software is provided 'as-is', without any express or implied
00007   warranty.  In no event will the authors be held liable for any damages
00008   arising from the use of this software.
00009 
00010   Permission is granted to anyone to use this software for any purpose,
00011   including commercial applications, and to alter it and redistribute it
00012   freely, subject to the following restrictions:
00013 
00014   1. The origin of this software must not be misrepresented; you must not
00015      claim that you wrote the original software. If you use this software
00016      in a product, an acknowledgment in the product documentation would be
00017      appreciated but is not required.
00018   2. Altered source versions must be plainly marked as such, and must not be
00019      misrepresented as being the original software.
00020   3. This notice may not be removed or altered from any source distribution.
00021 
00022   Jasper van de Gronde th.v.d.gronde@hccnet.nl
00023 
00024 */
00025 
00030 #ifndef EXPANDLIB_CMD_H_INCLUDED
00031 #define EXPANDLIB_CMD_H_INCLUDED
00032 
00033 #include <string>
00034 #include <vector>
00035 #include <map>
00036 #include <utility>
00037 
00038 #include <tchar.h>
00039 
00040 #include "expandlib-expandable.h"
00041 
00042 #include "expandlib-results.h"
00043 #include "expandlib-vartype.h"
00044 #include "expandlib-exceptions.h"
00045 
00046 namespace expander { // *** Start of namespace
00047 
00049 
00056     template<
00057         // Used for the expandable string (and the expanded string)
00058         class StringType = ::std::string
00059         >
00060     class expandcmd {
00061     private:
00063         expandcmd() {};
00064 
00065     protected:
00066         typedef ::std::vector<StringType> FParamVectorType; 
00067         typedef ::std::map<StringType, ::expander::expandvartype<StringType>*> FVarMapType; 
00068         typedef ::std::map<StringType, ::expander::expandcmd<StringType>*> FCmdMapType; 
00069 
00071         expandable<StringType> * const expobj;
00073 
00077         const StringType cmdname;
00078 
00079     public:
00081 
00083         expandcmd(expandable<StringType> * const eobj, const StringType cn) : expobj(eobj), cmdname(cn) {};
00084 
00086 
00089         virtual void operator()(StringType &dest, const FParamVectorType &params, const FVarMapType &vars, ExpandResultsType &results) const = 0;
00090 
00092 
00096         void Register() { expobj->cmdmap[cmdname] = this; };
00097     };
00098 
00099 } // *** End of namespace
00100 
00101 #endif //EXPANDLIB_CMD_H_INCLUDED

Generated on Tue Feb 4 17:24:13 2003 for ExpandLib by doxygen1.3-rc2