diff -r 000000000000 -r ff3b6d0fd310 cbs/CbsServer/ServerInc/CbsDbConstants.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbs/CbsServer/ServerInc/CbsDbConstants.h Tue Feb 02 01:11:09 2010 +0200 @@ -0,0 +1,52 @@ +/* +* Copyright (c) 2003 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: Contains constants used by the database. +* +*/ + + +#ifndef CBSDBCONSTANTS_H +#define CBSDBCONSTANTS_H + +// INCLUDES +#include + +// CONSTANTS + +// The default size of database observer array. +const TInt KCbsDbObserverArraySize = 3; + +// The default size of the topic array. +const TInt KCbsDbTopicArraySize = 50; + +// The maximum amount of received (not saved) messages in a topic. +const TInt KCbsDbMaxReceivedMessages = 6; + +// The maximum amount of saved (not received) messages (all topics). +const TInt KCbsDbMaxSavedMessages = 50; + +// Minimum valid topic number +const TInt KCbsMinValidTopicNumber = 0; + +// Maximum valid topic number +const TInt KCbsMaxValidTopicNumber = 999; + +// Maximum number of characters in one message. 15 pages, 93 characters per page. +const TUint KCbsMaxCharsInMessage = 15*93; + +#endif // CBSDBCONSTANTS_H + +// End of File + +