--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/iaupdate/IAD/ui/inc/iaupdateuiconfigdata.h Thu Dec 17 08:51:10 2009 +0200
@@ -0,0 +1,90 @@
+/*
+* Copyright (c) 2007-2008 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: Header file of CIAUpdateUiConfigData class
+*
+*/
+
+
+
+#ifndef IA_UPDATE_UI_CONFIG_DATA_H
+#define IA_UPDATE_UI_CONFIG_DATA_H
+
+
+#include <e32base.h>
+
+
+/**
+ * CIAUpdateUiConfigData provides configuration data
+ * for the engine.
+ *
+ * @since S60 v3.2
+ */
+class CIAUpdateUiConfigData : public CBase
+ {
+
+public:
+
+ /**
+ * @return CIAUpdateUiConfigData*
+ *
+ * @since S60 v3.2
+ */
+ static CIAUpdateUiConfigData* NewL();
+
+ /**
+ * @return CIAUpdateUiConfigData*
+ *
+ * @since S60 v3.2
+ */
+ static CIAUpdateUiConfigData* NewLC();
+
+
+ /**
+ * Destructor
+ *
+ * @since S60 v3.2
+ */
+ virtual ~CIAUpdateUiConfigData();
+
+
+ /**
+ * @return TInt Grid refresh delta hours.
+ *
+ * @since S60 v3.2
+ */
+ TInt GridRefreshDeltaHours() const;
+
+
+ /**
+ * @return TInt Query history delay hours.
+ *
+ * @since S60 v3.2
+ */
+ TInt QueryHistoryDelayHours() const;
+
+private:
+
+ CIAUpdateUiConfigData();
+ void ConstructL();
+
+
+private: // data
+
+ TInt iGridRefreshDeltaHours;
+ TInt iQueryHistoryDelayHours;
+
+ };
+
+#endif // IA_UPDATE_UI_CONFIG_DATA_H
+