Loading [MathJax]/extensions/tex2jax.js
mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
sofa.hpp
Go to the documentation of this file.
1/** \file sofa.hpp
2 * \brief Wrapper for the sofa library headers, adding a namespace
3 *
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 * \ingroup timeutils
7 *
8 */
9
10#ifndef __sofa_hpp__
11#define __sofa_hpp__
12
13namespace sofa
14{
15#ifndef MX_GLOBAL_SOFA
16#include "sofa/sofa.h"
17#else
18#include <sofa.h>
19#endif
20} // namespace sofa
21
22// Have to undefine DC to avoid symbol conflict with Eigen.
23#undef DC
24
25#endif //__sofa_hpp__