epoc32/include/ct/ccttokentype.h
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
     1.1 --- a/epoc32/include/ct/ccttokentype.h	Wed Mar 31 12:27:01 2010 +0100
     1.2 +++ b/epoc32/include/ct/ccttokentype.h	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -17,35 +17,23 @@
     1.4  */
     1.5  
     1.6  
     1.7 -
     1.8 -
     1.9  /**
    1.10   @file 
    1.11 - @internalTechnology
    1.12 + @publishedAll
    1.13 + @released
    1.14  */
    1.15   
    1.16  #ifndef __CCTTOKENTYPE_H__
    1.17  #define __CCTTOKENTYPE_H__
    1.18  
    1.19 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.20 +#include "cttokentypedeletehandler.h"
    1.21 +#endif
    1.22 +
    1.23 +class CCTTokenTypeDeleteHandler;
    1.24  #include <ct/mcttokentype.h>
    1.25  
    1.26  /**
    1.27 - * Abstract base class for a handler object to be called when a CCTTokenType is
    1.28 - * deleted.  The handler is called simply by being deleted.  It is called from
    1.29 - * CCTTokenType's destructor.
    1.30 - *
    1.31 - * This allows for ecom-loaded tokens to be destroyed properly without
    1.32 - * forcing clients of ctframework.dll to link against ecom.
    1.33 - *
    1.34 - * @internalTechnology
    1.35 - */
    1.36 -class CCTTokenTypeDeleteHandler : public CBase
    1.37 -	{
    1.38 - public:
    1.39 -	IMPORT_C virtual ~CCTTokenTypeDeleteHandler();
    1.40 -	};
    1.41 -
    1.42 -/**
    1.43   * A token type.
    1.44   *
    1.45   * This abstract class is instantiated using the ECom plug-in architecture 
    1.46 @@ -56,8 +44,6 @@
    1.47   * inadvertantly call delete on instances of it - they should call the Release()
    1.48   * method instead.
    1.49   * 
    1.50 - * @publishedPartner
    1.51 - * @released
    1.52   * @since v7.0
    1.53   */
    1.54  class CCTTokenType : protected CBase, public MCTTokenType