SigPack - the C++ signal processing library
 
Loading...
Searching...
No Matches
Misc

Macros

#define err_handler(msg)
 
#define wrn_handler(msg)
 

Functions

arma_inline std::string sp::sp_version (void)
 

Detailed Description

Macro Definition Documentation

◆ err_handler

#define err_handler (   msg)
Value:
{ \
std::cout << "SigPack Error [" << __FILE__ << "@" << __LINE__ << "]: " << msg << std::endl; \
std::cin.get(); \
exit( EXIT_FAILURE ); \
}

Definition at line 212 of file base.h.

◆ wrn_handler

#define wrn_handler (   msg)
Value:
{ \
std::cout << "SigPack warning [" << __FILE__ << "@" << __LINE__ << "]: " << msg << std::endl; \
}

Definition at line 222 of file base.h.

Function Documentation

◆ sp_version()

arma_inline std::string sp::sp_version ( void  )

SigPack version string.

Definition at line 203 of file base.h.

References SP_VERSION_MAJOR, SP_VERSION_MINOR, and SP_VERSION_PATCH.