main_ubi_sdk v 0.1.3
This is UBI4 documentation
templates.h
Go to the documentation of this file.
1/*
2 ******************************************************************************
3 * @file templates.h
4 * @author A.Alborov
5 ******************************************************************************
6*/
7
8
9
10#ifndef TEMPLATES_H_
11#define TEMPLATES_H_
12
13#define CAT(X,Y) X##_##Y
14#define TEMPLATE(X,Y) CAT(X,Y)
15
16#endif