diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-01-08 17:08:54 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-01-08 17:08:54 +0000 |
commit | d87fa85e0b064206509f4e544d8156072d901e3e (patch) | |
tree | 9129b01975aee19a55549849c71448ca81131643 /interface | |
parent | a4e7c82789e5eff26b1e6a84c1a123f248e989a2 (diff) | |
download | opt-utilities-d87fa85e0b064206509f4e544d8156072d901e3e.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@161 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'interface')
-rw-r--r-- | interface/optdl.hpp | 7 | ||||
-rw-r--r-- | interface/pyfunc_obj.hpp | 7 | ||||
-rw-r--r-- | interface/pymodel.hpp | 8 | ||||
-rw-r--r-- | interface/type_depository.hpp | 12 |
4 files changed, 32 insertions, 2 deletions
diff --git a/interface/optdl.hpp b/interface/optdl.hpp index 35b2f9b..1516770 100644 --- a/interface/optdl.hpp +++ b/interface/optdl.hpp @@ -1,3 +1,10 @@ +/** + \file optdl.hpp + \brief dynamically loadable modules + \author Junhua Gu + */ + + #ifndef OPTDL_HPP #define OPTDL_HPP #define OPT_HEADER diff --git a/interface/pyfunc_obj.hpp b/interface/pyfunc_obj.hpp index db2775a..3e75d34 100644 --- a/interface/pyfunc_obj.hpp +++ b/interface/pyfunc_obj.hpp @@ -1,3 +1,10 @@ +/** + \file pyfunc_obj.hpp + \brief function object wrappers for python functions + \author Junhua Gu + */ + + #ifndef PYFUNC_OBJ_HPP #define PYFUNC_OBJ_HPP #include <boost/python.hpp> diff --git a/interface/pymodel.hpp b/interface/pymodel.hpp index 8041a6b..729840c 100644 --- a/interface/pymodel.hpp +++ b/interface/pymodel.hpp @@ -1,3 +1,11 @@ +/** + \file pymodel.hpp + \brief model wrapper of python functions + \author Junhua Gu + */ + + + #ifndef PYMODEL #define PYMODEL #include <boost/python.hpp> diff --git a/interface/type_depository.hpp b/interface/type_depository.hpp index 7405bb5..6a53edc 100644 --- a/interface/type_depository.hpp +++ b/interface/type_depository.hpp @@ -1,9 +1,17 @@ +/** + \file type_depository.hpp + \brief depository and draw objects + \author Junhua Gu + */ + + + #ifndef TYPE_DEPOSITORY_HPP #define TYPE_DEPOSITORY_HPP #include <string> #include <utility> -#include "../core/optimizer.hpp" -#include "../core/fitter.hpp" +#include <core/optimizer.hpp> +#include <core/fitter.hpp> #include <map> #include <iostream> namespace opt_utilities |