Files
DRAMSys/extensions/apps/traceAnalyzer/businessObjects/dramTimeDependencies/dbEntries/specialized/DDR3dbphaseentry.h

22 lines
471 B
C++

/*
* Copyright (c) 2025 Fraunhofer IESE. All rights reserved.
*
* Authors:
* Iron Prando da Silva
*/
#pragma once
#include "businessObjects/dramTimeDependencies/dbEntries/dbphaseentryBase.h"
class DDR3DBPhaseEntry : public DBPhaseEntryBase
{
public:
DDR3DBPhaseEntry(const QSqlQuery&);
size_t tRank;
bool potentialDependency(const TimeDependency& dep,
const std::shared_ptr<DBPhaseEntryBase> otherPhase) override;
};