export sellers as json file

This commit is contained in:
Martin Brodbeck 2018-08-02 11:15:15 +02:00
parent b2d696ccb5
commit 045bc8dd20
8 changed files with 80 additions and 11 deletions

14
src/core/jsonutil.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef JSON_H
#define JSON_H
#include "marketplace.h"
#include <string>
class JsonUtil
{
public:
static void exportSellers(const std::string& filename, Marketplace* market);
};
#endif