mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
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#include "sofa/sofam.h"
18#else
19#include <sofa.h>
20#include <sofam.h>
21#endif
22} // namespace sofa
23
24// Have to undefine DC to avoid symbol conflict with Eigen.
25#undef DC
26
27#endif //__sofa_hpp__