Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 326 Bytes

ssuks.h

File metadata and controls

28 lines (21 loc) · 326 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
* @file ssuks.h
* @copyright 2013 Jolla Ltd.
* @author Bernd Wachter <bwachter@lart.info>
* @date 2013
*/
#ifndef _SSUKS_H
#define _SSUKS_H
#include <QObject>
#include <QDebug>
Oct 10, 2016
Oct 10, 2016
14
15
class SsuKs: public QObject
{
16
17
Q_OBJECT
Oct 10, 2016
Oct 10, 2016
18
public:
Oct 10, 2016
Oct 10, 2016
19
SsuKs() {}
Oct 10, 2016
Oct 10, 2016
21
public slots:
22
23
void run();
Oct 10, 2016
Oct 10, 2016
24
private:
25
26
27
28
void usage();
};
#endif