diff -r 7d48bed6ce0c -r 987c9837762f telutils/dialpad/tsrc/unit/shared/mock_cenrep.cpp --- a/telutils/dialpad/tsrc/unit/shared/mock_cenrep.cpp Tue Aug 31 15:45:17 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -#include -#include - -// TODO: Add a new class named Ut_Utility to config all CR key -// to simulate 3 different images -CRepository* CRepository::NewL(TUid /*aRepositoryUid*/) -{ - CRepository *self = new (ELeave) CRepository(); - return self; -} - -CRepository::~CRepository() -{ -} - -TInt CRepository::Get(TUint32 aKey, TInt& aValue) -{ - aValue = mValue; - return KErrNone; -} -TInt CRepository::Set(TUint32 /*aKey*/, TInt aValue) -{ - mValue = aValue; - return KErrNone; -} - -TInt CRepository::Get(TUint32 /*aKey*/, TDes16& aValue) -{ - return KErrNone; -} - -TInt CRepository::Set(TUint32 /*aKey*/, const TDesC16& /*aValue*/) -{ - return KErrNone; -}