You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
289 B
17 lines
289 B
|
5 years ago
|
#pragma once
|
||
|
|
#include <data.hpp>
|
||
|
|
#include <fs.hpp>
|
||
|
|
#include <future>
|
||
|
|
#include <json.hpp>
|
||
|
|
|
||
|
|
class orders : public json {
|
||
|
|
const with_data_directory &data_directory;
|
||
|
|
const fs::path &get_path();
|
||
|
|
|
||
|
|
|
||
|
|
public:
|
||
|
|
void write(const json &);
|
||
|
|
void load();
|
||
|
|
orders(const with_data_directory &);
|
||
|
|
};
|