equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: TTCTransactionFlushBuffer class declaration. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef TCTRANSACTIONFLUSHBUFFER_H |
|
21 #define TCTRANSACTIONFLUSHBUFFER_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "tctransaction.h" |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * Flush buffer transaction. Flush buffer transaction |
|
32 * contains the amount of data objects written in |
|
33 * the current data buffer. |
|
34 * |
|
35 * @lib None |
|
36 * @since S60 5.0 |
|
37 */ |
|
38 NONSHARABLE_CLASS( TTCTransactionFlushBuffer ): public TTCTransaction |
|
39 { |
|
40 public: |
|
41 |
|
42 /** |
|
43 * Default C++ constructor. |
|
44 */ |
|
45 TTCTransactionFlushBuffer( TInt aDataCount ); |
|
46 |
|
47 public: |
|
48 |
|
49 /** Written data count */ |
|
50 TInt iDataCount; |
|
51 }; |
|
52 |
|
53 #endif // TCTRANSACTIONFLUSHBUFFER_H |
|
54 |
|
55 // End of File |