examples/S60CppExamples/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.
00010 *  This material, including documentation and any related
00011 *  computer programs, is protected by copyright controlled by
00012 *  Nokia Corporation.
00013 * ==============================================================================
00014 */
00015 
00016 
00017 #ifndef __CSSYNCAPPVIEW_H__
00018 #define __CSSYNCAPPVIEW_H__
00019 
00020 // INCLUDE FILES
00021 #include <coecntrl.h>
00022 
00023 // FORWARD DECLARATIONS
00024 class CCSSyncDocument;
00025 
00026 // CLASS DECLARATION
00032 class CCSSyncAppView : public CCoeControl
00033     {
00034     public: // Constructors and destructors
00035 
00044         static CCSSyncAppView* NewL( const TRect& aRect,
00045                                      CCSSyncDocument& aDocument );
00046 
00055         static CCSSyncAppView* NewLC( const TRect& aRect,
00056                                       CCSSyncDocument& aDocument );
00057 
00063         virtual ~CCSSyncAppView();
00064 
00065     public:  // Functions from base classes
00066 
00072         void Draw( const TRect& aRect ) const;
00073         
00074         
00075     private: // Constructors and destructors
00076 
00083         CCSSyncAppView( CCSSyncDocument& aDocument );
00084 
00090         void ConstructL( const TRect& aRect );
00091 
00092     private: // Data
00093 
00097         CCSSyncDocument& iDocument;
00098     };
00099 
00100 
00101 #endif // __CSSYNCAPPVIEW_H__
00102 
00103 
00104 // End of File

Generated by  doxygen 1.6.2