S60 5th Edition SDK
Example Applications Guide

asynctimeobserver.h

00001 /*
00002 * ==============================================================================
00003 *  Name        : asynctimeobserver.h
00004 *  Part of     : CSAsync
00005 *  Interface   :
00006 *  Description :
00007 *  Version     :
00008 *
00009 *  Copyright (c) 2004-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 __ASYNCTIMEOBSERVER_H__
00018 #define __ASYNCTIMEOBSERVER_H__
00019 
00020 // CLASS DECLARATION
00021 /**
00022 * MAsyncTimeObserver
00023 *  Mixin class.
00024 *  Observer which handles updates from the server example application.
00025 */
00026 class MAsyncTimeObserver
00027     {
00028     public:
00029         /**
00030         * HandleTimeUpdate.
00031         * Handle updates from the server.
00032         */
00033         virtual void HandleTimeUpdate() = 0;
00034     };
00035 
00036 #endif // __ASYNCTIMEOBSERVER_H__
00037 
00038 // End of File

© Nokia 2009

Back to top