X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFBaseColStlConverter.h;h=819b18b42dd79bcbf2594235b0986f8b9f4d220d;hb=e80995cdc52540955e96e50a86d3b298a48f416a;hp=e6c282de2d146535c370db5f719e11e32e5dad7e;hpb=51f01919ec04d8411f9251bb384c4d1a23ab006d;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FBaseColStlConverter.h b/inc/FBaseColStlConverter.h index e6c282d..819b18b 100644 --- a/inc/FBaseColStlConverter.h +++ b/inc/FBaseColStlConverter.h @@ -97,7 +97,7 @@ public: * @return An IteratorT instance * @param[in] pList A pointer to the IList instance to convert */ - template < typename T > + template< typename T > static IteratorT< T > GetBeginIterator(const IList* pList) { return IteratorT< T >(*pList); @@ -111,7 +111,7 @@ public: * @return An IteratorT instance * @param[in] pList A pointer to the IList instance to convert */ - template < typename T > + template< typename T > static IteratorT< T > GetEndIterator(const IList* pList) { return IteratorT< T >(*pList, true); @@ -125,7 +125,7 @@ public: * @return A RandomIteratorT instance * @param[in] pList A pointer to the IList instance to convert */ - template < typename T > + template< typename T > static RandomIteratorT< T > GetBeginRandomIterator(const IList* pList) { return RandomIteratorT< T >(*pList, 0); @@ -139,7 +139,7 @@ public: * @return A RandomIteratorT instance * @param[in] pList A pointer to the IList instance to convert */ - template < typename T > + template< typename T > static RandomIteratorT< T > GetEndRandomIterator(const IList* pList) { return RandomIteratorT< T >(*pList, pList->GetCount()); @@ -154,7 +154,7 @@ public: * @return A PairIteratorT instance * @param[in] pMap A pointer to the IMap instance to convert */ - template < typename K, typename V > + template< typename K, typename V > static PairIteratorT< K, V > GetBeginPairIterator(const IMap* pMap) { return PairIteratorT< K, V >(*pMap); @@ -169,7 +169,7 @@ public: * @return A PairIteratorT instance * @param[in] pMap A pointer to the IMap instance to convert */ - template < typename K, typename V > + template< typename K, typename V > static PairIteratorT< K, V > GetEndPairIterator(const IMap* pMap) { return PairIteratorT< K, V >(*pMap, true); @@ -184,7 +184,7 @@ public: * @return A PairIteratorT instance * @param[in] pMultiMap A pointer to the IMultiMap instance to convert */ - template < typename K, typename V > + template< typename K, typename V > static PairIteratorT< K, V > GetBeginPairIterator(const IMultiMap* pMultiMap) { return PairIteratorT< K, V >(*pMultiMap); @@ -199,7 +199,7 @@ public: * @return A PairIteratorT instance * @param[in] pMultiMap A pointer to the IMultiMap instance to convert */ - template < typename K, typename V > + template< typename K, typename V > static PairIteratorT< K, V > GetEndPairIterator(const IMultiMap* pMultiMap) { return PairIteratorT< K, V >(*pMultiMap, true); @@ -227,7 +227,7 @@ public: * @see SingleObjectDeleter() * @see ArrayDeleter() */ - template < typename FwdIter > + template< typename FwdIter > static std::unique_ptr< ArrayList > GetArrayListN(FwdIter begin, FwdIter end, DeleterFunctionType deleter = NoOpDeleter) { std::unique_ptr< ArrayList > pArrayList(new (std::nothrow) ArrayList(deleter)); @@ -271,7 +271,7 @@ public: * @see SingleObjectDeleter() * @see ArrayDeleter() */ - template < typename FwdIter > + template< typename FwdIter > static std::unique_ptr< LinkedList > GetLinkedListN(FwdIter begin, FwdIter end, DeleterFunctionType deleter = NoOpDeleter) { std::unique_ptr< LinkedList > pLinkedList(new (std::nothrow) LinkedList(deleter)); @@ -312,7 +312,7 @@ public: * @see SingleObjectDeleter() * @see ArrayDeleter() */ - template < typename PairedFwdIter > + template< typename PairedFwdIter > static std::unique_ptr< HashMap > GetHashMapN(PairedFwdIter begin, PairedFwdIter end, DeleterFunctionType deleter = NoOpDeleter) { std::unique_ptr< HashMap > pMap(new (std::nothrow) HashMap(deleter)); @@ -356,7 +356,7 @@ public: * @see SingleObjectDeleter() * @see ArrayDeleter() */ - template < typename PairedFwdIter > + template< typename PairedFwdIter > static std::unique_ptr< MultiHashMap > GetMultiHashMapN(PairedFwdIter begin, PairedFwdIter end, DeleterFunctionType deleter = NoOpDeleter) { std::unique_ptr< MultiHashMap > pMultiMap(new (std::nothrow) MultiHashMap(deleter)); @@ -410,7 +410,7 @@ private: // @return A reference to the %StlConverter instance // @param[in] rhs A reference to the %StlConverter instance // - StlConverter& operator=(const StlConverter& rhs); + StlConverter& operator =(const StlConverter& rhs); }; }}} // Tizen::Base::Collection