equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: JvmArgs modifier appends new args and replaces modified args |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef ARGSMODIFIER_H |
|
20 #define ARGSMODIFIER_H |
|
21 |
|
22 #include <string> |
|
23 #include <list> |
|
24 |
|
25 namespace java // codescanner::namespace |
|
26 { |
|
27 namespace runtime // codescanner::namespace |
|
28 { |
|
29 |
|
30 OS_NONSHARABLE_CLASS(JvmArgsModifier) |
|
31 { |
|
32 public: |
|
33 JvmArgsModifier(); |
|
34 ~JvmArgsModifier(); |
|
35 |
|
36 void combineArguments(std::list<std::wstring>& aOrig, const std::list<std::wstring>& aNew); |
|
37 }; |
|
38 |
|
39 } // end namespace runtime |
|
40 } // end namespace java |
|
41 |
|
42 |
|
43 #endif // ARGSMODIFIER_H |