Use standard types instead of typedefs wherever possible

This commit is contained in:
pd 2008-08-09 01:16:45 +02:00
parent efc594f888
commit f0a9278511
12 changed files with 90 additions and 100 deletions

View file

@ -13,17 +13,17 @@ public:
EchoServer(DBus::Connection &connection);
DBus::Int32 Random();
int32_t Random();
DBus::String Hello(const DBus::String &name);
std::string Hello(const std::string &name);
DBus::Variant Echo(const DBus::Variant &value);
std::vector< DBus::Byte > Cat(const DBus::String &file);
std::vector< uint8_t > Cat(const std::string &file);
DBus::Int32 Sum(const std::vector<DBus::Int32> & ints);
int32_t Sum(const std::vector<int32_t> & ints);
std::map< DBus::String, DBus::String > Info();
std::map< std::string, std::string > Info();
};
#endif//__DEMO_ECHO_SERVER_H