blob: acb6d823543d36c335cfc12af8f32893557f17d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "opentrack-guts.h"
#include "opentrack.h"
opentrack opentrack_make_ctx(const char *dir)
{
QDir d(dir);
return new opentrack_ctx(d);
}
void opentrack_finalize_ctx(opentrack bye_bye)
{
delete bye_bye;
}
|