~ubuntu-branches/ubuntu/trusty/arc-gui-clients/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef STORAGESPLASH_H
#define STORAGESPLASH_H

#include <QDialog>

namespace Ui {
class StorageSplash;
}

class StorageSplash : public QDialog
{
    Q_OBJECT
    
public:
    explicit StorageSplash(QWidget *parent = 0);
    ~StorageSplash();
    
private:
    Ui::StorageSplash *ui;
};

#endif // STORAGESPLASH_H