1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8interface Search_Index_QueryRepository
9{
10	function getMatchingQueries(array $document);
11
12	function store($name, Search_Expr_Interface $expr);
13	function unstore($name);
14}
15