From a8f5e819bd37b0d9f53e9cc003be5043546e5c5a Mon Sep 17 00:00:00 2001 From: pdurante Date: Mon, 9 Jul 2007 12:47:02 +0000 Subject: [PATCH] * Fixed an omission in type signature detection git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@11883 30a43799-04e7-0310-8b2b-ea0d24f86d0e --- include/dbus-c++/types.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/dbus-c++/types.h b/include/dbus-c++/types.h index 9f8bf0d..ed81726 100644 --- a/include/dbus-c++/types.h +++ b/include/dbus-c++/types.h @@ -145,6 +145,7 @@ struct type } }; +template <> struct type { static std::string sig(){ return "v"; } }; template <> struct type { static std::string sig(){ return "y"; } }; template <> struct type { static std::string sig(){ return "b"; } }; template <> struct type { static std::string sig(){ return "n"; } }; @@ -157,7 +158,7 @@ template <> struct type { static std::string sig(){ return "d"; template <> struct type { static std::string sig(){ return "s"; } }; template <> struct type { static std::string sig(){ return "o"; } }; template <> struct type { static std::string sig(){ return "g"; } }; -template <> struct type { static std::string sig(){ return ""; } }; +template <> struct type { static std::string sig(){ return ""; } }; template struct type< std::vector >