/* ---------------------------------------------------------------------------- * 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 Class.h * @brief describe the C++ class that is being wrapped * @author Frank Dellaert * @author Andrew Melim * @author Richard Roberts **/ #pragma once #include #include #include "Class.h" namespace wrap { struct TemplateInstantiationTypedef { std::vector classNamespaces; std::string className; std::vector namespaces; std::string name; std::vector > typeList; Class findAndExpand(const std::vector& classes) const; }; }