/*************************************************************************** * Copyright (C) 2007,2008,2009 by Rick L. Vinyard, Jr. * * address@hidden * * * * This file is part of the dbus-cxx library. * * * * The dbus-cxx library is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * version 3 as published by the Free Software Foundation. * * * * The dbus-cxx library is distributed in the hope that it will be * * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * * General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this software. If not see . * ***************************************************************************/ #include #include #include /** * This example demonstrates a signal emitter using a dbus-cxx signal * derived from sigc::signal. * * The message of the signal is created when the signal is emitted from * the emission parameters. * * However, the connection must still be flushed since a dispatcher is * not being used. */ int main() { DBus::init(); DBus::Connection::pointer connection = DBus::Connection::create( DBus::BUS_SESSION ); DBus::signal::pointer signal = connection->create_signal("/test/signal/Object", "test.signal.Type", "Test"); const char* sigvalue1 = "Hello"; std::string sigvalue2("World"); signal->emit( sigvalue1 ); connection->flush(); signal->emit( sigvalue2 ); connection->flush(); usleep(250000); }