cdt/cdt_6_0_x/org.eclipse.cdt.managedbuilder.core.tests/testdata/Basename.h
author cawthron
Wed, 04 Nov 2009 15:12:39 -0600
branchRCL_2_4
changeset 107 50bdf9ce2ff9
parent 37 c2bce6dd59e7
permissions -rw-r--r--
add branch RCL_2_4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     1
/*
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     2
============================================================================
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     3
 Name        : $(baseName).h
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     4
 Author      : $(author)
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     5
 Version     :
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     6
 Copyright   : $(copyright)
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     7
 Description : Exe header file
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     8
============================================================================
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     9
*/
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    10
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    11
#ifndef __$(baseName)_H__
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    12
#define __$(baseName)_H__
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    13
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    14
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    15
//  Include Files
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    16
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    17
#include <stdio.h>
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    18
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    19
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    20
//  Function Prototypes
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    21
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    22
void printMessage(char*);
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    23
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    24
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    25
#endif  // __$(baseName)_H__
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    26
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    27