Dcover
[SXSI/TextCollection.git] / TextCollection.cpp
1 #include "TextCollection.h"
2 #include "CSA.h"
3
4 namespace SXSI
5 {
6     /**
7      * Init text collection
8      *
9      * See CSA.h for more details.
10      */
11     TextCollection * TextCollection::InitTextCollection(unsigned samplerate)
12     {
13         TextCollection *result = new CSA(samplerate);
14         return result;
15     }
16 }