HowManyAreAnalyzed(): use status_user_agent to report progress
[linguistica.git] / LinkerCollection.h
blob34c70e264e9b24697be47f68d76f649ec63a95e1
1 // Record of compound interfixes in a corpus
2 // Copyright © 2009 The University of Chicago
3 #ifndef LINKERCOLLECTION_H
4 #define LINKERCOLLECTION_H
6 // See the CLexicon class in Lexicon.h for an overview of compound discovery.
8 #include "CollectionTemplate.h"
9 #include <q3listview.h>
11 class CLinker;
13 class CLinkerCollection : public TCollection<CLinker> {
14 public:
15 CLinkerCollection();
16 CLinkerCollection(CLexicon*);
17 CLinkerCollection(CMiniLexicon*);
18 virtual ~CLinkerCollection();
20 void ListDisplay(Q3ListView* parent,
21 QMap<QString, QString>* filter = 0);
23 void SortByIndex();
24 int GetTotalUseCount();
27 #endif // LINKERCOLLECTION_H