omadrm/drmhelper/inc/ConsumeData.h
changeset 23 493788a4a8a4
parent 0 95b198f216e5
--- a/omadrm/drmhelper/inc/ConsumeData.h	Tue Feb 02 00:21:44 2010 +0200
+++ b/omadrm/drmhelper/inc/ConsumeData.h	Fri Apr 16 15:14:55 2010 +0300
@@ -22,7 +22,7 @@
 // INCLUDES
 #include <e32base.h>
 #include <caf/caf.h>
-#include <drmrightsclient.h>
+#include <DRMRightsClient.h>
 
 // DATA TYPES
 
@@ -40,56 +40,56 @@
 NONSHARABLE_CLASS( CConsumeData )  : public CBase
     {
     public:  // Constructors and destructor
-    
-		/**
+
+        /**
         * NewLC
         *
-		* Created a new instance of the CConsumeData class and leaves
-		* it into the cleanup stack
-		*
+        * Created a new instance of the CConsumeData class and leaves
+        * it into the cleanup stack
+        *
         * @param aUri: Content identifier of the content in question
-		* @return Functional CConsumeData -object
+        * @return Functional CConsumeData -object
         */
         static CConsumeData* NewLC( const TDesC8& aUri );
 
-    
-		/**
+
+        /**
         * NewL
         *
-		* Created a new instance of the CConsumeData class
-		*
+        * Created a new instance of the CConsumeData class
+        *
         * @param aUri: Content identifier of the content in question
-		* @return Functional CConsumeData -object
+        * @return Functional CConsumeData -object
         */
         static CConsumeData* NewL( const TDesC8& aUri );
-        
+
         /**
         * Destructor
         */
         ~CConsumeData();
-        
+
     public:  // New functions
-    
- 		/**
+
+        /**
         * Consume
         *
-		* Calls client consumption, if you call this with stop, the session
-		* is deleted
-		*
+        * Calls client consumption, if you call this with stop, the session
+        * is deleted
+        *
         * @param aIntent: Intent to be used for consumption
-		* @return Symbian OS error code
-        */         
+        * @return Symbian OS error code
+        */
         TInt Consume( const ContentAccess::TIntent& aIntent );
 
- 		/**
+        /**
         * CompateUri();
         *
-		* Compares the uri as if compared with string compare
-		*
+        * Compares the uri as if compared with string compare
+        *
         * @param aIntent: Intent to be used for consumption
-		* @return Symbian OS error code
-        */         
-        TInt CompareUri( const TDesC8& aUri ) const;        
+        * @return Symbian OS error code
+        */
+        TInt CompareUri( const TDesC8& aUri ) const;
 
     private:
         /**
@@ -104,16 +104,16 @@
 
         // Content uri of the content being used
         HBufC8* iContentURI8;
-        
+
         // Rights Client instance
-       	RDRMRightsClient iRdb;
-       	
-       	// Connection status
-       	TBool iConnectionStatus;
+        RDRMRightsClient iRdb;
+
+        // Connection status
+        TBool iConnectionStatus;
     };
 
 
 
-#endif      // CONSUMEDATA_H   
-            
+#endif      // CONSUMEDATA_H
+
 // End of File