/* ---------------------------------------------------------------------------- * 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 QPParser.h * @brief QPS parser implementation * @author Ivan Dario Jimenez * @date 3/5/16 */ #pragma once #include #include namespace gtsam { class QPSParser { private: std::string fileName_; struct MPSGrammar; public: QPSParser(const std::string& fileName) : fileName_(findExampleDataFile(fileName)) { } QP Parse(); }; }