homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsmenumodewrapper.h
author hgs
Fri, 25 Jun 2010 19:19:22 +0300
changeset 62 341166945d65
parent 46 23b5d6a29cce
child 81 7dd137878ff8
permissions -rw-r--r--
201025

/*
 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 *
 * Contributors:
 *
 * Description: Menu View Builder
 *
 */

#ifndef HSMENUMODEWRAPPER_H
#define HSMENUMODEWRAPPER_H

#include <QVariant>
#include "hsapp_defs.h"

class HsMenuModeWrapper
{
public:
    HsMenuModeWrapper();
    
    HsMenuMode getHsMenuMode() const;
    QVariant getHsToken() const;

    void setHsMenuMode(HsMenuMode menuMode, QVariant token = NULL);

private:
    HsMenuMode mMode;
    QVariant mToken;
};

#endif