blob: cb03f2defee12dfbe287e3bfcf6c5e91f93c087c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <precomp.h>
#include "svc_eval.h"
#define CBCLASS svc_evaluatorI
START_DISPATCH
CB(GETEVALTYPE, getEvalType);
CB(SETEVALSTRING, setEvalString);
CB(EVALUATE, evaluate);
END_DISPATCH
#undef CBCLASS
|