epoc32/include/audioeffectdata.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  This file contains definitions of common audio effects data structures.
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef AUDIOEFFECTDATA_H
    21 #define AUDIOEFFECTDATA_H
    22 
    23 //  INCLUDES
    24 #include <e32std.h>
    25 
    26 // CLASS DECLARATION
    27 
    28 /**
    29 *  This class defines the common effect data
    30 *
    31 *  @lib EffectBase.lib
    32 *  @since 3.0
    33 */
    34 class TEfCommon
    35     {
    36     public: // Constructor and Destructor
    37 
    38         /**
    39         * Constructor.
    40         */
    41         TEfCommon() :
    42         	iEnabled(EFalse), iEnforced(EFalse), iHaveUpdateRights(ETrue) {}
    43 
    44     public:	// Data
    45 		// Flag to indicate whether the effect is enabled or not
    46 		TBool iEnabled;
    47 		// Flag to indicate wheter the effect is enforced
    48 		TInt8 iEnforced;
    49 		// Flag to indicate wheter the effect current has update rights
    50 		TBool iHaveUpdateRights;
    51     };
    52 
    53 #endif      // AUDIOEFFECTDATA_H
    54 
    55 // End of File