Time to get rid of the horrible coding style

This commit is contained in:
pd 2008-08-01 18:31:43 +02:00
parent 534ee610d8
commit efc594f888
53 changed files with 1137 additions and 1136 deletions

View file

@ -11,17 +11,17 @@ class EchoServer
{
public:
EchoServer( DBus::Connection& connection );
EchoServer(DBus::Connection &connection);
DBus::Int32 Random();
DBus::String Hello( const DBus::String & name );
DBus::String Hello(const DBus::String &name);
DBus::Variant Echo( const DBus::Variant & value );
DBus::Variant Echo(const DBus::Variant &value);
std::vector< DBus::Byte > Cat( const DBus::String & file );
std::vector< DBus::Byte > Cat(const DBus::String &file);
DBus::Int32 Sum( const std::vector<DBus::Int32> & ints );
DBus::Int32 Sum(const std::vector<DBus::Int32> & ints);
std::map< DBus::String, DBus::String > Info();
};