Implement a new layer data type.

Contrary to layerdata, this describes the layer itself rather than the
layer contents.
This commit is contained in:
2018-01-02 16:17:07 +01:00
parent 5c0dbcdaa4
commit 470399aabf
4 changed files with 116 additions and 13 deletions

View File

@@ -4,6 +4,7 @@
#include <memory>
#include <vector>
#include "LayerData.hpp"
#include "LayerInfo.hpp"
namespace fmri {
using std::string;
@@ -15,6 +16,7 @@ namespace fmri {
~Simulator();
vector<LayerData> simulate(const string &input_file);
const std::map<std::string, LayerInfo>& layerInfo() const;
private:
struct Impl;