gtsam/wrap/Method.h

56 lines
1.5 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 "StaticMethod.h"
namespace wrap {
/// Method class
struct Method: public StaticMethod {
/// Constructor creates empty object
Method(bool verbose = true) :
StaticMethod(verbose), is_const_(false) {
}
bool is_const_;
// 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,
const Qualified& instName = Qualified());
private:
// Emit method header
void proxy_header(FileWriter& proxyFile) const;
std::string wrapper_call(FileWriter& wrapperFile,
const std::string& cppClassName, const std::string& matlabUniqueName,
const ArgumentList& args, const ReturnValue& returnVal,
const TypeAttributesTable& typeAttributes,
const Qualified& instName) const;
};
} // \namespace wrap