Files

22 lines
475 B
C++

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