diff --git a/cython/gtsam.h b/cython/gtsam.h index 965c08108..3bf581208 100644 --- a/cython/gtsam.h +++ b/cython/gtsam.h @@ -7,6 +7,9 @@ typedef size_t Key; template class FastVector { FastVector(); FastVector(const This& f); + void push_back(const T& e); + //T& operator[](int); + T at(int i); }; typedef gtsam::FastVector KeyVector;