landmarks/locationlandmarks/tsrc/LandmarkTestModule/inc/FT_CSearchResult.h
branchRCL_3
changeset 44 2b4ea9893b66
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/landmarks/locationlandmarks/tsrc/LandmarkTestModule/inc/FT_CSearchResult.h	Tue Aug 31 15:37:04 2010 +0300
@@ -0,0 +1,90 @@
+/*
+* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: 
+*   ?description_line
+*
+*/
+
+
+
+#ifndef CSEARCHRESULT_H
+#define CSEARCHRESULT_H
+
+//  INCLUDES
+#include <e32base.h>
+#include <EPos_CPosLandmark.h>
+
+#include "Ft_CSearchResultBase.h"
+
+class CSearchResult : public CSearchResultBase
+    {
+
+    public:  // Constructors and destructor
+        
+         /**
+        * Two-phased constructor.
+        */
+        static CSearchResult* NewL(const TDesC& aDes); 
+
+        /**
+        * Destructor.
+        */
+        ~CSearchResult();      
+
+    public: 
+
+         TPtrC TextCriteria() const;
+        
+         const RArray<TUint>& PositionFields() const;
+
+    private: 
+        
+        CSearchResult();
+
+        void ConstructL(const TDesC& aDes);
+        
+
+    private:
+
+         // By default, prohibit copy constructor
+        CSearchResult(const CSearchResult&);
+        // Prohibit assigment operator
+        CSearchResult& operator=(const CSearchResult&);
+
+        void ParsePositionFields(const TDesC& aDes);
+
+        void Print();
+        
+        TBool Equals32(const TReal aValue1, const TReal aValue2, const TReal aAccuracy);
+        
+    private: // Data
+        
+        enum TValueIndex
+			{
+            ETextCriteria           =0,	
+            EAttributes             =1,	
+            EPositionFields         =2,
+            ELmSearchResult         =3,
+            ERedefined              =4
+			};
+        
+        HBufC*                      iTextCriteria;
+        
+        RArray<TUint>               iPositionFields;
+        
+    };
+
+#endif      // CSEARCHRESULT_H
+            
+// End of File