check transfer  0.1
Check data transfer for SDAccell OpenCL application
exceptinfo.h
Go to the documentation of this file.
1 
2 #ifndef __EXCEPTION_INFO_H__
3 #define __EXCEPTION_INFO_H__
4 
5 #include <string>
6 
7 typedef struct _except_info_t {
8  std::string info;
10 
11 except_info_t except_info(const char *fmt, ...);
12 
13 #endif //__EXCEPTION_INFO_H__
14 
std::string info
Definition: exceptinfo.h:8
struct _except_info_t except_info_t
except_info_t except_info(const char *fmt,...)
Definition: exceptinfo.cpp:25