0
|
1 |
/*
|
|
2 |
* ============================================================================
|
|
3 |
* Name : ?filename.rh
|
|
4 |
* Part of : ?Subsystem_name / ?Module_name
|
|
5 |
* Description : Resource headers for project ?myapp
|
|
6 |
* Version : %version: %
|
|
7 |
*
|
|
8 |
* Copyright © ?year-?year ?Company_copyright.
|
|
9 |
* All rights reserved.
|
|
10 |
* This component and the accompanying materials are made available
|
|
11 |
* under the terms of the License "?License"
|
|
12 |
* which accompanies this distribution, and is available
|
|
13 |
* at the URL "?LicenseUrl".
|
|
14 |
*
|
|
15 |
* Initial Contributors:
|
|
16 |
* ?Company_name - initial contribution.
|
|
17 |
*
|
|
18 |
* Contributors:
|
|
19 |
* ?Company_name
|
|
20 |
* ============================================================================
|
|
21 |
* Template version: 4.0
|
|
22 |
*/
|
|
23 |
|
|
24 |
#ifndef ?MODULENAME_RH
|
|
25 |
#define ?MODULENAME_RH
|
|
26 |
|
|
27 |
|
|
28 |
#include <?include_file.hrh>
|
|
29 |
|
|
30 |
// ---------------------------------------------------------------------------
|
|
31 |
// ?description
|
|
32 |
// ---------------------------------------------------------------------------
|
|
33 |
//
|
|
34 |
struct ?structure_name
|
|
35 |
{
|
|
36 |
?structure_data; // ?comment
|
|
37 |
|
|
38 |
// ?comment
|
|
39 |
?structure_data;
|
|
40 |
}
|
|
41 |
|
|
42 |
#endif // ?MODULENAME_RH
|