summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/knotifytest.cpp
blob: 6c5af25a7f841c56f1e18b0bc274410ccbdfa5ee (plain)
1
2
3
4
5
6
7
8
9
10
#include <knotifyclient.h>
#include <tdeapplication.h>

int main( int argc, char **argv )
{
	TDEApplication app( argc, argv, "knotifytest" );
    KNotifyClient::userEvent( "This is a notification to notify you :)", 
                              KNotifyClient::Messagebox,
                              KNotifyClient::Error );
}