2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-05-17 02:21:49 +00:00
|
|
|
|
|
|
|
#ifndef __inSearchLoop_h__
|
|
|
|
#define __inSearchLoop_h__
|
|
|
|
|
2006-05-17 02:34:08 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2006-05-17 02:21:49 +00:00
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "inISearchProcess.h"
|
|
|
|
|
|
|
|
class inSearchLoop
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
inSearchLoop(inISearchProcess* aSearchProcess);
|
2006-05-17 02:22:16 +00:00
|
|
|
virtual ~inSearchLoop();
|
2006-05-17 02:21:49 +00:00
|
|
|
|
|
|
|
nsresult Start();
|
|
|
|
nsresult Step();
|
|
|
|
nsresult Stop();
|
|
|
|
static void TimerCallback(nsITimer *aTimer, void *aClosure);
|
2006-05-17 02:22:16 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsITimer> mTimer;
|
|
|
|
nsCOMPtr<inISearchProcess> mSearchProcess;
|
2006-05-17 02:21:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|