ReFRACtor
altitude.cc
Go to the documentation of this file.
1 #include "altitude.h"
2 
3 using namespace FullPhysics;
4 
5 #ifdef HAVE_LUA
6 #include "register_lua.h"
9 
10 typedef std::vector<boost::shared_ptr<Altitude> >::reference
11 (std::vector<boost::shared_ptr<Altitude> >::*vt1)(
12  std::vector<boost::shared_ptr<Altitude> >::size_type);
13 
14 // typedef to distinguish between copying value or moving value (C++11) push_back prototoypes
15 typedef void(std::vector<boost::shared_ptr<Altitude> >::*pbt1)(
16  const std::vector<boost::shared_ptr<Altitude> >::value_type&);
17 
18 REGISTER_LUA_CLASS_NAME(std::vector<boost::shared_ptr<Altitude> >, VectorAltitude)
19 .def(luabind::constructor<>())
20 .def("push_back", ((pbt1) &std::vector<boost::shared_ptr<Altitude> >::push_back))
21 .def("size", &std::vector<boost::shared_ptr<Altitude> >::size)
22 .def("value", ((vt1) &std::vector<boost::shared_ptr<Altitude> >::operator[]))
24 #endif
Definition: doxygen.h:52
The class handles the calculation of the altitude and gravity constants.
Definition: altitude.h:19
STL namespace.
#define REGISTER_LUA_CLASS(X)
Definition: register_lua.h:116
#define REGISTER_LUA_CLASS_NAME(X, Y)
Definition: register_lua.h:129
void(std::vector< std::string >::* pbt1)(const std::vector< std::string >::value_type &)
Definition: register_lua.cc:52
Contains classes to abstract away details in various Spurr Radiative Transfer software.
Definition: doxygen_python.h:1
#define REGISTER_LUA_END()
Definition: register_lua.h:134
def(luabind::constructor< int >()) .def("rows"
double value(const FullPhysics::AutoDerivative< double > &Ad)

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:10