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