mirror of
https://github.com/YuhangQ/InvoDB.git
synced 2025-01-27 15:10:57 +00:00
21 lines
299 B
C++
21 lines
299 B
C++
//
|
|
// Created by YuhangQ on 2021/10/9.
|
|
//
|
|
|
|
#ifndef INVODB_INVODB_H
|
|
#define INVODB_INVODB_H
|
|
|
|
#include "models/json.h"
|
|
#include "models/collection.h"
|
|
|
|
class InvoDB {
|
|
public:
|
|
Collection createCollection();
|
|
Collection getCollection();
|
|
void deleteCollection();
|
|
|
|
};
|
|
|
|
|
|
#endif //INVODB_INVODB_H
|