I'm trying to get the class multi to store a series of function/argument pairs. The functions are of the form:
[code=c]
string funcA (const string argA)
[/code]
I thought that I had all the signatures matching in:
[code=c]
#include <string>
#include <queue>
using namespace std;
typedef string (*attr_func_T) (const string);
typedef ...