source: pacpussensors/trunk/ExampleComponent/ExampleComponentConfig.h@ 12

Last change on this file since 12 was 12, checked in by morasjul, 11 years ago

[script] NewComponent.bat.

File size: 1.0 KB
Line 
1// %pacpus:license{
2// This file is part of the PACPUS framework distributed under the
3// CECILL-C License, Version 1.0.
4// %pacpus:license}
5/// @file
6/// @date created ${<CURRENT_DATETIME>}
7/// @author @todo ${<USERNAME>} <firstname.surname@utc.fr>
8/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
9/// @version $Id: $
10///
11/// @todo Brief description of ${<PROJECT_NAME>}Config.h.
12///
13/// @todo Detailed description of ${<PROJECT_NAME>}Config.h.
14
15#ifndef ${<PROJECT_NAME_CAPS>}CONFIG_H
16#define ${<PROJECT_NAME_CAPS>}CONFIG_H
17
18// Export macro for ${<PROJECT_NAME>} DLL for Windows only
19#ifdef WIN32
20# ifdef ${<PROJECT_NAME_CAPS>}_EXPORTS
21 // make DLL
22# define ${<PROJECT_NAME_CAPS>}_API __declspec(dllexport)
23# else
24 // use DLL
25# define ${<PROJECT_NAME_CAPS>}_API __declspec(dllimport)
26# endif
27#else
28 // On other platforms, simply ignore this
29# define ${<PROJECT_NAME_CAPS>}_API
30#endif
31
32#endif // ${<PROJECT_NAME_CAPS>}CONFIG_H
33
Note: See TracBrowser for help on using the repository browser.