22 lines
676 B
C++
22 lines
676 B
C++
/*
|
|
* Copyright (c) 2025 Fraunhofer IESE. All rights reserved.
|
|
*
|
|
* Authors:
|
|
* Iron Prando da Silva
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "businessObjects/dramTimeDependencies/configurations/configurationBase.h"
|
|
#include "businessObjects/dramTimeDependencies/dbEntries/specialized/HBM2dbphaseentry.h"
|
|
#include "businessObjects/dramTimeDependencies/deviceDependencies/specialized/TimeDependenciesInfoHBM2.h"
|
|
|
|
class HBM2Configuration : public ConfigurationBase
|
|
{
|
|
public:
|
|
HBM2Configuration(const TraceDB& tdb);
|
|
|
|
QString getQueryStr(const std::vector<QString>& commands) const override;
|
|
std::shared_ptr<DBPhaseEntryBase> makePhaseEntry(const QSqlQuery&) const override;
|
|
};
|