LZ index support
[SXSI/TextCollection.git] / TextCollection.cpp
1 #include "TextCollection.h"
2 #include "TCImplementation.h"
3
4 namespace SXSI
5 {
6     /**
7      * Init text collection from a file
8      *
9      * See TCImplementation.h for more details.
10      */
11     TextCollection * TextCollection::Load(FILE *fp, unsigned samplerate)
12     {
13         TextCollection *result = new TCImplementation(fp, samplerate);
14         return result;
15     }
16 }