예제 #1
0
 public static TssSdtDouble NewTssSdtDouble()
 {
     return(new TssSdtDouble
     {
         m_slot = TssSdtDoubleSlot.NewSlot(null)
     });
 }
예제 #2
0
 private void SetValue(double v)
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtDoubleSlot.NewSlot(null);
     }
     this.m_slot.SetValue(v);
 }
예제 #3
0
 private double GetValue()
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtDoubleSlot.NewSlot(null);
     }
     return(this.m_slot.GetValue());
 }
예제 #4
0
 private static void CollectSlot(TssSdtDoubleSlot slot)
 {
 }
예제 #5
0
 public static TssSdtDoubleSlot NewSlot(TssSdtDoubleSlot slot)
 {
     TssSdtDoubleSlot.CollectSlot(slot);
     return(new TssSdtDoubleSlot());
 }
예제 #6
0
파일: TssSdt.cs 프로젝트: fengqk/Art
 private void SetValue(double v)
 {
     if (m_slot == null)
     {
         m_slot = TssSdtDoubleSlot.NewSlot(null);
     }
     m_slot.SetValue(v);
 }
예제 #7
0
파일: TssSdt.cs 프로젝트: fengqk/Art
 private double GetValue()
 {
     if (m_slot == null)
     {
         m_slot = TssSdtDoubleSlot.NewSlot(null);
     }
     return m_slot.GetValue();
 }
예제 #8
0
파일: TssSdt.cs 프로젝트: fengqk/Art
 //reserver for custom memory pool imp
 private static void CollectSlot(TssSdtDoubleSlot slot)
 {
 }
예제 #9
0
파일: TssSdt.cs 프로젝트: fengqk/Art
 //reserver for custom memory pool imp
 public static TssSdtDoubleSlot NewSlot(TssSdtDoubleSlot slot)
 {
     CollectSlot(slot);
     TssSdtDoubleSlot new_slot = new TssSdtDoubleSlot();
     return new_slot;
 }