24 lines
784 B
C++
24 lines
784 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/deviceDependencies/specialized/DDR3TimeDependencies.h"
|
|
#include "businessObjects/dramTimeDependencies/dbEntries/specialized/DDR3dbphaseentry.h"
|
|
#include "businessObjects/dramTimeDependencies/deviceDependencies/specialized/TimeDependenciesInfoDDR3.h"
|
|
|
|
class DDR3Configuration : public ConfigurationBase
|
|
{
|
|
public:
|
|
DDR3Configuration(const TraceDB& tdb);
|
|
|
|
QString getQueryStr(const std::vector<QString>& commands) const override;
|
|
std::shared_ptr<DBPhaseEntryBase> makePhaseEntry(const QSqlQuery&) const override;
|
|
};
|