-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
39 lines (35 loc) · 844 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* File: main.cpp
* Author: rukshan
*
* Created on August 29, 2013, 9:14 AM
*/
#include <QtGui/QApplication>
#include <QTimer>
#include <qt4/QtCore/qdebug.h>
#include "MainWindow.h"
#include "printbits.h"
#include "subtitleSave.h"
#include "player.h"
#include "subtitleEditor.h"
#include "header/SubtitleRead.h"
#include <iostream>
#include <stdlib.h>
#include "FileSelector.h"
#include <string>
#include <qt4/QtCore/qvariant.h>
#include <stdio.h>
#include <qt4/QtCore/qstring.h>
using namespace std;
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
subtitleEditor *edit = new subtitleEditor();
// player *p = new player();
// if (p->open("/home/rukshan/song.mp3")) {
// p->play();
// p->changeVolume(50);
// }else{
// cout<<"error"<<endl;
// }
return app.exec();
}