mtpdataproviders/mtpimagedp/inc/mtpimagedputilits.h
changeset 0 d0791faffa3f
child 2 4843bb5893b6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mtpdataproviders/mtpimagedp/inc/mtpimagedputilits.h	Tue Feb 02 01:11:40 2010 +0200
@@ -0,0 +1,59 @@
+// Copyright (c) 2009 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:
+//
+
+/**
+ @file
+ @internalTechnology
+*/
+
+#ifndef MTPIMAGEDPUTILITS_H
+#define MTPIMAGEDPUTILITS_H
+
+#include <e32base.h>
+
+#include <mtp/mtpprotocolconstants.h>
+
+#include "rmediasyncserver.h"
+
+class MMTPDataProviderFramework;
+class CMTPObjectMetaData;
+class TMTPTypeUint32;
+class CMTPImageDataProvider;
+
+/** 
+Defines static utility functions
+**/
+
+class MTPImageDpUtilits 
+    {
+public:
+    
+    static TMTPResponseCode VerifyObjectHandleL(MMTPDataProviderFramework& aFramework, const TMTPTypeUint32& aHandle, CMTPObjectMetaData& aMetaData);
+    
+    static TInt32  FindStorage(MMTPDataProviderFramework& aFramework, const TDesC& aPath);
+    
+    static TUint32 FindParentHandleL(MMTPDataProviderFramework& aFramework, CMTPImageDataProvider& aDataProvider, const TDesC& aFullPath);
+    
+    /**
+     * Calculate the new pictures value and set RProperty.
+     
+       @param aDataProvider  The image data provider reference
+       @param aNewPics       The new pictures count
+       @param aSetRProperty  Whether should set RProperty value to notify all subscribers.
+     */
+    static void UpdateNewPicturesValue(CMTPImageDataProvider& aDataProvider, TInt aNewPics, TBool aSetRProperty);
+    };
+    
+#endif MTPIMAGEDPUTILITS_H