예제 #1
0
 public CppPrecalc(CppBackend backend)
     : base(backend)
 {
     _backend = backend;
     _type    = _backend.GetType(DataType.Null);
     _func    = _backend.GetFunction(Function.Null);
 }
예제 #2
0
 public override bool Begin(DataType dt)
 {
     _type = _backend.GetType(dt);
     return(true);
 }