blob: f1779ec1da49583639f83ef8421d8b57127ad75d [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once
#include "Layer.hpp"
namespace armnn
{
enum class GraphEvent
{
LayerAdded,
LayerErased
};
class IGraphObservable
{
public:
virtual void Update(Layer* graphLayer) = 0;
protected:
virtual ~IGraphObservable() = default;
};
} //namespace armnn