blob: 464f3a577ff965b5c82224c368e46b377119de40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <QtGui/QPainter>
#include "watchsimulator.h"
using namespace sowatch;
WatchSimulator::WatchSimulator(const QImage& image, QObject* parent) :
Watch(image, parent)
{
}
|