- moved all functions to Layer

- added Stack

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@577 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-10-25 16:41:39 +00:00
parent 3e90330cd1
commit c68faa894e
7 changed files with 192 additions and 14 deletions
+36
View File
@@ -0,0 +1,36 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Stack.hpp
* Author: jens
*
* Created on 25. Oktober 2019, 18:26
*/
#ifndef STACK_HPP
#define STACK_HPP
#include <armadillo>
#include <jsoncpp/json/json.h>
#include "Layer.hpp"
class Stack
{
public:
Stack();
Stack(const Stack& orig);
virtual ~Stack();
void addLayer(const Layer &layer);
const Layer& getLayer();
private:
};
#endif /* STACK_HPP */