Files
query/include/matador/query/table.hpp
T
2024-02-18 18:12:00 +01:00

17 lines
213 B
C++

#ifndef QUERY_TABLE_HPP
#define QUERY_TABLE_HPP
#include <typeindex>
#include <string>
namespace matador::query {
struct table_data
{
std::type_index index;
std::string name;
};
}
#endif //QUERY_TABLE_HPP