Initial commit

This commit is contained in:
Tobias Rundstrom 2006-02-14 23:12:46 -03:00
commit cc0faeee08
61 changed files with 1410 additions and 0 deletions

31
MainWindow.h Normal file
View file

@ -0,0 +1,31 @@
#ifndef __MAINWINDOW_H__
#define __MAINWINDOW_H__
#include <iostream>
#include <QMainWindow>
#include <QPixmap>
#include <QPainter>
#include <QWidget>
#include <QHash>
#include <xmmsclient/xmmsclient.h>
#include "Skin.h"
#include "XmmsQT4.h"
using namespace std;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(void);
~MainWindow(void);
Skin *getSkin(void);
private:
Skin *skin;
};
#endif