mirror of
https://github.com/YuhangQ/InvoDB.git
synced 2025-01-28 23:50:59 +00:00
17 lines
231 B
C++
17 lines
231 B
C++
//
|
|
// Created by projector-user on 11/1/21.
|
|
//
|
|
|
|
#ifndef INVODB_QUERY_H
|
|
#define INVODB_QUERY_H
|
|
|
|
#include "json/json.hpp"
|
|
|
|
class Query {
|
|
std::vector<nlohmann::json> find(const nlohmann::json &json);
|
|
|
|
};
|
|
|
|
|
|
#endif //INVODB_QUERY_H
|