|
Revision 33578, 0.5 kB
(checked in by hoge1e3, 4 years ago)
|
|
右クリックでタブを閉じる。ポップアップの位置がへん
|
| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Linq;
|
|---|
| 4 | using System.Text;
|
|---|
| 5 |
|
|---|
| 6 | namespace 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 | }
|
|---|