20 lines
340 B
C++
20 lines
340 B
C++
/** @file literals.hpp
|
|
*
|
|
* @author Cory Alexander Balaton (coryab)
|
|
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
|
|
*
|
|
* @version 1.0
|
|
*
|
|
* @brief Useful literals
|
|
*
|
|
* @bug No known bugs
|
|
* */
|
|
#ifndef __LITERALS__
|
|
#define __LITERALS__
|
|
|
|
#include <complex>
|
|
|
|
std::complex<double> operator ""_i(long double magnitude);
|
|
|
|
#endif
|