aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 15041d5e78c5d808534bf7810e39880daae17730 (plain)
1
2
3
4
5
6
7
8
9
#include "../include/QuickMedia.hpp"
#include <unistd.h>

int main(int argc, char **argv) {
    XInitThreads();
    setlocale(LC_ALL, "C"); // Sigh... stupid C
    QuickMedia::Program program;
    return program.run(argc, argv);
}