summaryrefslogtreecommitdiff
path: root/libopie/pim/test/oevent_test.cpp
blob: 50cc032c58122c52b8cf1790fde5407f3c540c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <qdatetime.h>

#include "../oevent.h"

int main(int argc, char* argv ) {
    OEvent ev;
    ev.setUid( 20 );

    ev.setDescription( "Foo" );

    OEvent ev2 = ev;
    ev2.setDescription("Foo2");
    qWarning("%s", ev2.description().latin1() );
    qWarning("%s", ev.description().latin1() );

    QDateTime time = QDateTime::currentDateTime();
    ev2.setStartDateTime( time );
    ev2.setTimeZone( "Europe/London" );

    qWarning("%s", ev2.startDateTime().toString().latin1() );
    qWarning("%s", ev2.startDateTimeInZone().toString().latin1() );
    return 0;
}