Names.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6namespace armarx
7{
8
9 struct Names
10 {
11 std::vector<std::string> recognized;
12 std::vector<std::string> spoken;
13 };
14
15} // namespace armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
std::vector< std::string > spoken
Definition Names.h:12
std::vector< std::string > recognized
Definition Names.h:11