using System; using System.Collections.Generic; using System.Text; using ORiN2.ManagedCAO; namespace NJSample.VarInfo { class SingleVariableInfo : VariableInfo { protected override void CreateImpl(CCaoController ctrl) { //_variable = ctrl.AddVariable(GetVariableAccessName(), null); } public override bool HasValue { get { return true; } } } }