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