blob: 6598d0486e8929aca2eea94e54fa49799fcb7bd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef LIVEVIEWNOTIFICATIONWATCHLET_H
#define LIVEVIEWNOTIFICATIONWATCHLET_H
#include <sowatch.h>
namespace sowatch
{
class LiveViewNotificationWatchlet : public DeclarativeWatchlet
{
Q_OBJECT
public:
explicit LiveViewNotificationWatchlet(Watch* watch);
static const QLatin1String myId;
};
}
#endif // LIVEVIEWNOTIFICATIONWATCHLET_H
|