// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. // Copyright (C) LibreHardwareMonitor and Contributors. // Partial Copyright (C) Michael Möller and Contributors. // All Rights Reserved. namespace LibreHardwareMonitor.Hardware; /// /// Abstract parent with logic for the abstract class that stores data. /// public interface IElement { /// /// Accepts the observer for this instance. /// /// Computer observer making the calls. void Accept(IVisitor visitor); /// /// Call the method for all child instances (called only from visitors). /// /// Computer observer making the calls. void Traverse(IVisitor visitor); }