ImagePrint/ImagePrintUI/imageprinteng/inc/mprintjob.h
branchGCC_SURGE
changeset 25 59ea2209bb67
parent 23 08cc4cc059d4
parent 15 a92d00fca574
--- a/ImagePrint/ImagePrintUI/imageprinteng/inc/mprintjob.h	Fri Jun 11 16:24:10 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-/*
-* Copyright (c) 2004-2007 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:  
-*
-*/
-
-
-#ifndef MPRINTJOB_H
-#define MPRINTJOB_H
-
-#include <e32def.h>
-#include <e32base.h>
-
-class MPrintJobObserver;
-
-/**
- *
- * Interface to manage the printing
- *
- */
-class MPrintJob
-    {
-	public:		// Abstract methods
-
-        /**
-         *  Starts printing images with selected settings, template and printer.
-         *  If this method does not leave, the printing has started. Further messages
-         *  about printing progress are passed through MPrintJobObserver
-         *  Asynchronous
-         *
-         *  @param aObserver Pointer to the observer class that handles the 
-         */
-        virtual void PrintL( MPrintJobObserver* aObserver ) = 0;
-
-        /**
-         *  Cancels the active print job. The cancellation is finished, when 
-         *  MPrintJobObserver receives error event with error code KErrCancel
-         *  Asynchronous
-         */
-        virtual void CancelL() = 0;
-        
-        /**
-         *  Get all the images from current print job.
-         *
-         *  @param aImages An array, in which the printed images are added.
-         */
-        virtual void GetPrintJobL( RPointerArray<TDesC>& aImages ) = 0;
-        
-    };
-
-#endif //  MPRINTJOB_H
-
-//  End of File