--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/upnpframework/upnpcommand/inc/upnpcopytask.h Thu Dec 17 08:52:00 2009 +0200
@@ -0,0 +1,91 @@
+/*
+* Copyright (c) 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: Header file for the CUpnpCopyTask class.
+*
+*/
+
+
+#ifndef UPNP_COPY_TASK_H
+#define UPNP_COPY_TASK_H
+
+// INCLUDES
+// System
+#include <e32base.h>
+// base class
+#include "upnpfiletransferbasetask.h"
+
+// FORWARD DECLARATIONS
+
+
+/**
+* This class defines the CUpnpCopyTask used in UpnpCommand component.
+*
+* @since S60 3.2
+*/
+class CUpnpCopyTask : public CUpnpFileTransferBaseTask
+ {
+ public: // Methods from CUpnpTask
+
+ /**
+ * Creates a new CUpnpCopyTask object. Allocates Upnp Fw resources.
+ * Resources will be released when the task is destroyed.
+ *
+ * @since S60 3.2
+ * @return a new instance of CUpnpCopyTask, casted to type CUpnpTask
+ */
+ static CUpnpTask* NewL();
+
+ /**
+ * Allocates the Upnp Fw resources.
+ *
+ * @since S60 3.2
+ */
+ void AllocateResourcesL();
+
+ /**
+ * Executes the task.
+ *
+ * @since S60 3.2
+ */
+ void ExecuteL();
+
+
+ public: // Public destructor
+
+ /**
+ * Destructor.
+ */
+ virtual ~CUpnpCopyTask();
+
+ private: // Private construct/destruct methods
+
+ /**
+ * Perform the first phase of two phase construction.
+ *
+ * @since S60 3.2
+ * @return a new instance of CUpnpCopyTask, casted to type CUpnpTask
+ */
+ CUpnpCopyTask();
+
+ /**
+ * Perform the second phase of two phase construction. Reserves the
+ * Upnp Fw resources (they are released when the task is destroyed).
+ */
+ void ConstructL();
+
+ };
+
+#endif // UPNP_COPY_TASK_H
+
+// End of File
\ No newline at end of file