-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedefs.hpp
More file actions
25 lines (22 loc) · 806 Bytes
/
Copy pathtypedefs.hpp
File metadata and controls
25 lines (22 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// ----------------------------------------------------------------------------
// typedefs.hpp
//
// Created on: 13 Feb 2020
// Author: Kiwon Um
// Mail: kiwon.um@telecom-paris.fr
//
// Description: Global renaming for types
//
// Copyright 2020 Kiwon Um
//
// The copyright to the computer program(s) herein is the property of Kiwon Um,
// Telecom Paris, France. The program(s) may be used and/or copied only with
// the written permission of Kiwon Um or in accordance with the terms and
// conditions stipulated in the agreement/contract under which the program(s)
// have been supplied.
// ----------------------------------------------------------------------------
#ifndef _TYPEDEFS_H_
#define _TYPEDEFS_H_
typedef float tReal;
typedef unsigned int tIndex;
#endif /* _TYPEDEFS_H_ */