Removes LogReader.h/cpp from Gems/ScriptCanvas

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2022-01-06 11:36:50 -08:00
parent e97db10ac3
commit b56512fd18
4 changed files with 0 additions and 121 deletions
@@ -17,7 +17,6 @@
#include "APIArguments.h"
#include "Logger.h"
#include "LogReader.h"
namespace ScriptCanvas
{
@@ -1,65 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include "LogReader.h"
namespace ScriptCanvas
{
namespace Debugger
{
LogReader::LogReader()
{
}
LogReader::~LogReader()
{
}
void LogReader::Visit([[maybe_unused]] ExecutionThreadEnd& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] ExecutionThreadBeginning& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] GraphActivation& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] GraphDeactivation& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] NodeStateChange& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] InputSignal& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] OutputSignal& loggableEvent)
{
}
void LogReader::Visit([[maybe_unused]] VariableChange& loggableEvent)
{
}
}
}
@@ -1,53 +0,0 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <AzCore/Component/EntityId.h>
#include <ScriptCanvas/Core/Core.h>
#include <ScriptCanvas/Asset/ExecutionLogAsset.h>
#include <AzCore/EBus/EBus.h>
#include <Debugger/Bus.h>
#include "APIArguments.h"
namespace ScriptCanvas
{
namespace Debugger
{
class LogReader
: public LoggableEventVisitor
{
public:
AZ_CLASS_ALLOCATOR(LogReader, AZ::SystemAllocator, 0);
LogReader();
~LogReader();
// start at the beginning, if possible
bool Start() { return false; }
// step back one event, if possible
bool StepBack() { return false; }
// step forward one event, if possible
bool StepForward() { return false; }
protected:
void Visit(ExecutionThreadEnd&);
void Visit(ExecutionThreadBeginning&);
void Visit(GraphActivation&);
void Visit(GraphDeactivation&);
void Visit(NodeStateChange&);
void Visit(InputSignal&);
void Visit(OutputSignal&);
void Visit(VariableChange&);
private:
size_t m_index = 0;
};
}
}
@@ -18,8 +18,6 @@ set(FILES
Include/ScriptCanvas/Debugger/Debugger.cpp
Include/ScriptCanvas/Debugger/Logger.h
Include/ScriptCanvas/Debugger/Logger.cpp
Include/ScriptCanvas/Debugger/LogReader.h
Include/ScriptCanvas/Debugger/LogReader.cpp
Include/ScriptCanvas/Debugger/StatusBus.h
Include/ScriptCanvas/Debugger/Messages/Notify.cpp
Include/ScriptCanvas/Debugger/Messages/Notify.h