예제 #1
0
 bool GetValue(wxVariant& value) const {
     bool ret = true;
     wxAny any = value.GetAny();
     any = Hit;
     return ret;
 }
예제 #2
0
 bool SetValue(const wxVariant& value) {
     bool ret = true;
     wxAny any = value.GetAny();
     ret = any.GetAs(&Hit);
     return ret;
 }