コード例 #1
0
ファイル: StringBlurp.cs プロジェクト: touky/Prateek
 private Value(bool value)
 {
     usage   = UsageType.None;
     id      = StaticText.Id.Empty;
     tag_str = null;
     tag_int = 0;
     tag_id  = StaticText.Id.Empty;
 }
コード例 #2
0
ファイル: StringBlurp.cs プロジェクト: touky/Prateek
 ///---------------------------------------------------------------------
 public bool Has(StaticText.Id id)
 {
     if (id == StaticText.Id.Empty)
     {
         return(m_ids.Count > 0);
     }
     else
     {
         return(m_ids.Count > 0 && m_ids.Contains(id));
     }
 }
コード例 #3
0
ファイル: StringBlurp.cs プロジェクト: touky/Prateek
 public Tag(StaticText.Id new_id)
 {
     id = new_id;
 }