70 lines
2.0 KiB
C++
70 lines
2.0 KiB
C++
/* ----------------------------------------------------------------------------
|
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
|
* Atlanta, Georgia 30332-0415
|
|
* All Rights Reserved
|
|
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
|
|
|
|
* See LICENSE for the license information
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* @file Method.h
|
|
* @brief describes and generates code for methods
|
|
* @author Frank Dellaert
|
|
* @author Richard Roberts
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <list>
|
|
|
|
#include "Argument.h"
|
|
#include "ReturnValue.h"
|
|
#include "TypeAttributesTable.h"
|
|
|
|
namespace wrap {
|
|
|
|
/// Method class
|
|
struct Method {
|
|
|
|
/// Constructor creates empty object
|
|
Method(bool verbose = true) :
|
|
verbose_(verbose), is_const_(false) {}
|
|
|
|
// Then the instance variables are set directly by the Module constructor
|
|
bool verbose_;
|
|
bool is_const_;
|
|
std::string name;
|
|
std::vector<ArgumentList> argLists;
|
|
std::vector<ReturnValue> returnVals;
|
|
|
|
// The first time this function is called, it initializes the class members
|
|
// with those in rhs, but in subsequent calls it adds additional argument
|
|
// lists as function overloads.
|
|
void addOverload(bool verbose, bool is_const, const std::string& name,
|
|
const ArgumentList& args, const ReturnValue& retVal);
|
|
|
|
// MATLAB code generation
|
|
// classPath is class directory, e.g., ../matlab/@Point2
|
|
void proxy_wrapper_fragments(FileWriter& proxyFile, FileWriter& wrapperFile,
|
|
const std::string& cppClassName, const std::string& matlabClassName,
|
|
const std::string& wrapperName, const std::vector<std::string>& using_namespaces,
|
|
const TypeAttributesTable& typeAttributes,
|
|
std::vector<std::string>& functionNames) const;
|
|
|
|
private:
|
|
std::string wrapper_fragment(FileWriter& file,
|
|
const std::string& cppClassName,
|
|
const std::string& matlabClassname,
|
|
int overload,
|
|
int id,
|
|
const std::vector<std::string>& using_namespaces,
|
|
const TypeAttributesTable& typeAttributes) const; ///< cpp wrapper
|
|
};
|
|
|
|
} // \namespace wrap
|
|
|