Switch to unified view

a/src/qtgui/idxthread.h b/src/qtgui/idxthread.h
...
...
14
 *   Free Software Foundation, Inc.,
14
 *   Free Software Foundation, Inc.,
15
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
16
 */
16
 */
17
#ifndef _IDXTHREAD_H_INCLUDED_
17
#ifndef _IDXTHREAD_H_INCLUDED_
18
#define _IDXTHREAD_H_INCLUDED_
18
#define _IDXTHREAD_H_INCLUDED_
19
/* @(#$Id: idxthread.h,v 1.3 2006-01-30 11:15:28 dockes Exp $  (C) 2004 J.F.Dockes */
19
/* @(#$Id: idxthread.h,v 1.4 2006-03-22 16:24:41 dockes Exp $  (C) 2004 J.F.Dockes */
20
#include <string>
20
21
21
class RclConfig;
22
class RclConfig;
22
23
23
// These two deal with starting / stopping the thread itself, not indexing
24
// These two deal with starting / stopping the thread itself, not indexing
24
// sessions.
25
// sessions.
25
extern void start_idxthread(const RclConfig& cnf);
26
extern void start_idxthread(const RclConfig& cnf);
26
extern void stop_idxthread();
27
extern void stop_idxthread();
28
extern std::string idxthread_currentfile();
27
29
28
extern int startindexing;
30
extern int startindexing;
29
extern int indexingdone;
31
extern int indexingdone;
30
extern bool indexingstatus;
32
extern bool indexingstatus;
31
33