photosgallery/controllers/imageviewer/inc/glximageviewermanager.h
changeset 4 57d388cc48c1
parent 1 9ba538e329bd
child 14 ce1c7ad1f18b
child 17 ad4c3a8ea851
--- a/photosgallery/controllers/imageviewer/inc/glximageviewermanager.h	Tue Jan 26 11:58:28 2010 +0200
+++ b/photosgallery/controllers/imageviewer/inc/glximageviewermanager.h	Tue Feb 02 00:10:37 2010 +0200
@@ -46,10 +46,9 @@
     static CGlxImageViewerManager* InstanceL();
     
 public:
-    IMPORT_C inline HBufC* ImageUri( void );
-    IMPORT_C inline RFile64& ImageFileHandle() const;
-    IMPORT_C inline TBool IsPrivate();
-    IMPORT_C inline void IncrementRefCount();
+    IMPORT_C HBufC* ImageUri();
+    IMPORT_C RFile64& ImageFileHandle();
+    IMPORT_C TBool IsPrivate();
     IMPORT_C void DeleteInstance( void );
     IMPORT_C void SetImageUriL(const TDesC& aFileName);
     IMPORT_C void SetImageFileHandleL(const RFile& aFileHandle);
@@ -76,17 +75,17 @@
      * EPOC default constructor for performing 2nd stage construction
      */
     void ConstructL();
-    
 
 private:
-	//need to declare as it is initialised
-    TInt iRefCount; /// Reference count
-    HBufC* iImageUri; /// image file uri in case of Photos starting as Image viewer 
-    RFile64* iFile;  /// Handle to image file which will be shown in Image viewer
-    TBool iIsPrivate; /// Flag that stores if the image file is in a private folder. ETrue means the image is private, else EFalse 
-    
+    /// image file uri in case of Photos starting as Image viewer 
+    HBufC* iImageUri;
+
+    /// Handle to image file which will be shown in Image viewer
+    RFile64* iFile;
+
+    /// Flag that stores if the image file is in a private folder. 
+    /// ETrue means the image is private, else EFalse 
+    TBool iIsPrivate;
     };
 
-#include "glximageviewermanager.inl"
-
 #endif // GLXIMAGEVIEWERMANAGER_H