diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-07 12:31:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-07 12:38:27 +0200 |
commit | 8f6c55a839d790c9268c1d0686f3eaf2f23484cb (patch) | |
tree | 1b10a5e10b66c3c8dcf0a8bf295167563e0f6828 /include/sot | |
parent | e0f6559776b515a7d51331c7e848ac785e751c6a (diff) |
Replace SV_DECL/IMPL_REF macros with SvRef template
Change-Id: I0ef2e67f6d61e0ce118c0f5e926b8194ef9d8058
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/object.hxx | 2 | ||||
-rw-r--r-- | include/sot/storage.hxx | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/include/sot/object.hxx b/include/sot/object.hxx index fb3484624adc..164402b5bc49 100644 --- a/include/sot/object.hxx +++ b/include/sot/object.hxx @@ -138,7 +138,7 @@ private: }; //==================class SotObjectRef====================================== -SV_DECL_IMPL_REF(SotObject) +typedef tools::SvRef<SotObject> SotObjectRef; #endif // _IFACE_HXX diff --git a/include/sot/storage.hxx b/include/sot/storage.hxx index a82efb1307ae..8a31d7f4eb0a 100644 --- a/include/sot/storage.hxx +++ b/include/sot/storage.hxx @@ -88,9 +88,8 @@ public: #ifndef SOT_DECL_SOTSTORAGESTREAM_DEFINED #define SOT_DECL_SOTSTORAGESTREAM_DEFINED -SV_DECL_REF(SotStorageStream) +typedef tools::SvRef<SotStorageStream> SotStorageStreamRef; #endif -SV_IMPL_REF(SotStorageStream) namespace ucbhelper { @@ -224,9 +223,8 @@ public: #ifndef SOT_DECL_SOTSTORAGE_DEFINED #define SOT_DECL_SOTSTORAGE_DEFINED -SV_DECL_REF(SotStorage) +typedef tools::SvRef<SotStorage> SotStorageRef; #endif -SV_IMPL_REF(SotStorage) #define SvStorage SotStorage #define SvStorageRef SotStorageRef |