// Limit.h #ifndef LIMIT_H #define LIMIT_H namespace math1d_cl { struct Limit { double lower; double upper; }; } #endif