Fledge
An open source edge computing platform for industrial users
json_provider.h
1 #ifndef _JSONPROVIDER_H
2 #define _JSONPROVIDER_H
3 /*
4  * Fledge storage service.
5  *
6  * Copyright (c) 2017 OSisoft, LLC
7  *
8  * Released under the Apache 2.0 Licence
9  *
10  * Author: Mark Riddoch
11  */
12 #include <string>
13 
15 {
16  public:
17  virtual void asJSON(std::string &) const = 0;
18 };
19 #endif
Definition: json_provider.h:14