#pragma once class NeuralNode { public: double activation() const { return _activation; } protected: double _activation; };