backupandrestore/backupengine/inc/sbmain.h
changeset 0 d0791faffa3f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/backupandrestore/backupengine/inc/sbmain.h	Tue Feb 02 01:11:40 2010 +0200
@@ -0,0 +1,76 @@
+/**
+* Copyright (c) 2004-2009 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:
+* Main entry point in the process.
+* 
+*
+*/
+
+
+
+/**
+ @file
+*/
+
+#ifndef __SBMAIN_H__
+#define __SBMAIN_H__
+
+#include <e32base.h>
+
+
+/** @mainpage Secure Backup Documentation
+
+This is the documentation for Secure Backup.
+
+
+@section UsingDoc How to use this documentation
+
+The documentation can be split into three logical groups and they are as follows:
+
+
+@par Secure Backup Modules
+
+@li @ref SBEServer  This is the Secure Backup Engine module documentation
+
+@li @ref ABServer  This is Active Backup module documentation
+
+*/
+
+
+/**
+@namespace conn
+
+This namespace is the global Symbian Connect namespace which encapsulates 
+all of the connectivity components within Symbian OS.
+*/
+
+namespace conn
+	{
+	
+	class CSBActiveScheduler : public CActiveScheduler
+	/**
+	@internalComponent
+    
+    The active scheduler for secure backup.
+	*/	
+		{
+		public:
+		    /** C++ Constructor */
+			CSBActiveScheduler() : CActiveScheduler() { }
+			void Error(TInt aError) const;
+		};
+	}	
+		
+	
+#endif //__SBMAIN_H__