Differential pressure meter

Dependencies:   TFT_Touch_WaveShare

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers system.h Source File

system.h

00001 #ifndef SYSTEM_H
00002 #define SYSTEM_H
00003 
00004 #include <stdint.h>
00005 
00006 #define HIGH 1
00007 #define LOW 0
00008 
00009 template<typename T, typename U>
00010 struct is_same 
00011 {
00012     static const bool value = false; 
00013 };
00014 
00015 template<typename T>
00016 struct is_same<T,T>  //specialization
00017 { 
00018    static const bool value = true; 
00019 };
00020 
00021 
00022 #endif