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