root/lang/csharp/soyText/soyText/SearchLogSet.cs @ 33578

Revision 33578, 0.5 kB (checked in by hoge1e3, 4 years ago)

右クリックでタブを閉じる。ポップアップの位置がへん

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace SoyText
7{
8    internal class SearchLogSet
9    {
10        DocumentSet superSet;
11        DocumentList list = null;
12        internal bool addIfContains(Document d)
13        {
14            if (d.parsed["type"] != "SearchLog") return false;
15            list.Add(d.uniqueLastUpdate, d);
16            return true;
17        }
18        internal DocumentList getRecents()
19        {
20            return list;
21        }
22    }
23}
Note: See TracBrowser for help on using the browser.