0
|
1 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// f32\sfsrv\cl_blockmap.cpp
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
#include "cl_std.h"
|
|
19 |
|
|
20 |
EXPORT_C TBlockMapEntry::TBlockMapEntry()
|
|
21 |
{
|
|
22 |
iNumberOfBlocks = 0;
|
|
23 |
iStartBlock = 0;
|
|
24 |
}
|
|
25 |
|
|
26 |
EXPORT_C void TBlockMapEntry::SetNumberOfBlocks( TUint aNumberOfBlocks )
|
|
27 |
{
|
|
28 |
iNumberOfBlocks = aNumberOfBlocks;
|
|
29 |
}
|
|
30 |
|
|
31 |
EXPORT_C void TBlockMapEntry::SetStartBlock( TUint aStartBlock )
|
|
32 |
{
|
|
33 |
iStartBlock = aStartBlock;
|
|
34 |
}
|
|
35 |
|