gtsam
Loading...
Searching...
No Matches
SignatureParser.h
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2
3 * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4 * Atlanta, Georgia 30332-0415
5 * All Rights Reserved
6 * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7
8 * See LICENSE for the license information
9
10 * -------------------------------------------------------------------------- */
11
18
19#pragma once
20
21#include <optional>
22#include <string>
23#include <vector>
24
25#include <gtsam/dllexport.h>
26
27namespace gtsam {
52struct GTSAM_EXPORT SignatureParser {
53 using Row = std::vector<double>;
54 using Table = std::vector<Row>;
55
56 static std::optional<Table> Parse(const std::string& str);
57};
58} // namespace gtsam
Global functions in a separate testing namespace.
Definition chartTesting.h:28
A simple parser that replaces the boost spirit parser.
Definition SignatureParser.h:52