examples/SDKExamples/ClientServerSync/client/inc/cssyncappview.h

00001 /*
00002 * ==============================================================================
00003 *  Name        : cssyncappview.h
00004 *  Part of     : CSSync
00005 *  Interface   :
00006 *  Description :
00007 *  Version     :
00008 *
00009 *  Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
00010 *  All rights reserved.
00011 *  This component and the accompanying materials are made available
00012 *  under the terms of "Eclipse Public License v1.0"
00013 *  which accompanies this distribution, and is available
00014 *  at the URL "http://www.eclipse.org/legal/epl-v10.html".
00015 * ==============================================================================
00016 */
00017 
00018 
00019 #ifndef __CSSYNCAPPVIEW_H__
00020 #define __CSSYNCAPPVIEW_H__
00021 
00022 // INCLUDE FILES
00023 #include <coecntrl.h>
00024 
00025 // FORWARD DECLARATIONS
00026 class CCSSyncDocument;
00027 
00028 // CLASS DECLARATION
00034 class CCSSyncAppView : public CCoeControl
00035     {
00036     public: // Constructors and destructors
00037 
00046         static CCSSyncAppView* NewL( const TRect& aRect,
00047                                      CCSSyncDocument& aDocument );
00048 
00057         static CCSSyncAppView* NewLC( const TRect& aRect,
00058                                       CCSSyncDocument& aDocument );
00059 
00065         virtual ~CCSSyncAppView();
00066 
00067     public:  // Functions from base classes
00068 
00074         void Draw( const TRect& aRect ) const;
00075         
00076         
00077     private: // Constructors and destructors
00078 
00085         CCSSyncAppView( CCSSyncDocument& aDocument );
00086 
00092         void ConstructL( const TRect& aRect );
00093 
00094     private: // Data
00095 
00099         CCSSyncDocument& iDocument;
00100     };
00101 
00102 
00103 #endif // __CSSYNCAPPVIEW_H__
00104 
00105 
00106 // End of File

Generated by  doxygen 1.6.2