#pragma once #include #include "neural_node.h" class NeuralLink { public: NeuralLink(double weight); double weightedActivation() const; private: std::shared_ptr _input; double _weight; };