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

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