inc/DRMClockClient.h
changeset 23 493788a4a8a4
parent 0 95b198f216e5
--- a/inc/DRMClockClient.h	Tue Feb 02 00:21:44 2010 +0200
+++ b/inc/DRMClockClient.h	Fri Apr 16 15:14:55 2010 +0300
@@ -22,8 +22,7 @@
 
 //  INCLUDES
 #include <e32std.h>
-#include <DrmTypes.h>
-//#include "DRMClock.h"
+#include <DRMTypes.h>
 
 // CONSTANTS
 // MACROS
@@ -48,79 +47,79 @@
          * C++ default constructor.
          */
         IMPORT_C RDRMClockClient();
-        
-        /** 
+
+        /**
          * Destructor.
          */
         IMPORT_C virtual ~RDRMClockClient();
-        
-        /** 
+
+        /**
          * This method opens the connection between the client and the server.
          * @since 2.5
          * @return Error code. KErrNone if the operation is successful.
          */
         IMPORT_C TInt Connect();
-        
+
         /**
          * This function closes the connection between the client and the server.
          * It is safe to call this method even if connection is not established.
          * @since S60Rel2.5
-         */ 
+         */
         IMPORT_C void Close();
-        
+
     public: // New functions
-        
+
         /**
          * Get the secure time.
          * @since 2.6
-         * @param aTime           Output parameter containing the 
+         * @param aTime           Output parameter containing the
          *                        secure time in UTC.
          * @param aTimeZone       Time zone information including summer/winter time
          *                        in +/- 15 minutes
          * @param aSecurityLevel  Output parameter Securiry level.
          * @return Symbian OS error code if any.
          */
-        IMPORT_C TInt GetSecureTime( TTime& aTime, 
+        IMPORT_C TInt GetSecureTime( TTime& aTime,
                             TInt& aTimeZone,
                             DRMClock::ESecurityLevel& aSecurityLevel ) const;
-                            
+
         /**
          * Update the secure time.
          * @since 2.6
-         * @param aTime           Input parameter containing the 
+         * @param aTime           Input parameter containing the
          *                        secure time in UTC.
          * @param aTimeZone       Time zone information including summer/winter time
-         *                        in +/- 15 minutes         
+         *                        in +/- 15 minutes
          * @return Symbian OS error code if any.
          */
         IMPORT_C TInt UpdateSecureTime( const TTime& aTime, const TInt& aTimeZone );
-                            
-        
+
+
     public: // Functions from base classes
-        
+
     protected:  // New functions
-        
+
     protected:  // Functions from base classes
-        
+
     private:
         // Prohibit copy constructor if not deriving from CBase.
         RDRMClockClient( const RDRMClockClient& );
         // Prohibit assigment operator if not deriving from CBase.
         RDRMClockClient& operator=( const RDRMClockClient& );
-        
+
     public:     // Data
-        
+
     protected:  // Data
-        
+
     private:    // Data
-        
+
     public:     // Friend classes
-        
+
     protected:  // Friend classes
-        
+
     private:    // Friend classes
     };
-    
-#endif      // RDRMCLOCKCLIENT_H   
+
+#endif      // RDRMCLOCKCLIENT_H
 
 // End of File