diff -r 2e8eeb919028 -r b538b70cbe51 settingsengines/sdb/tests/native/CenRepTest/inc/cenreptestconst.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/settingsengines/sdb/tests/native/CenRepTest/inc/cenreptestconst.h Thu Mar 11 18:20:56 2010 +0200 @@ -0,0 +1,62 @@ +// Copyright (c) 2008-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: +// + +/* + ============================================================================ + Name : SPDTestConst.h + Author : + Copyright : Your copyright notice + Description : Exe header file + ============================================================================ + */ + +#ifndef __SPDTESTCONST_H__ +#define __SPDTESTCONST_H__ + +/** command line options */ +_LIT(KComa, ","); +_LIT(KSpace, " "); +_LIT(KCmdIndicator, "-"); +_LIT(KCmdVerbose, "v"); +_LIT(KCmdMode, "m"); +_LIT(KCmdNoWait, "w"); + +/** commandline arguments */ +_LIT(KModeCreate, "create"); +_LIT(KModeValidate, "validate"); + +enum TCommandId + { + EInvalid =-1, + ECreateSetting = 0, + EValidateSetting = 1 + }; + +enum TCommandError + { + ESuccess = 0, + EInvalidMode = 1, + EInvalidCmdArgs = 2, + }; + +/** Setting types */ +_LIT(KTypeInt, "int"); +_LIT(KTypeReal, "real"); +_LIT(KTypeString, "string"); +_LIT(KTypeString8, "string8"); + + + +#endif