27 lines
395 B
C++
27 lines
395 B
C++
/*
|
|
* Copyright (c) 2025 Fraunhofer IESE. All rights reserved.
|
|
*
|
|
* Authors:
|
|
* Iron Prando da Silva
|
|
*/
|
|
|
|
#include "dependencyinfos.h"
|
|
|
|
DependencyInfos::DependencyInfos(Type type) : mType(type)
|
|
{
|
|
}
|
|
|
|
DependencyInfos::DependencyInfos()
|
|
{
|
|
mType = DependencyType;
|
|
}
|
|
|
|
DependencyInfos::~DependencyInfos()
|
|
{
|
|
}
|
|
|
|
void DependencyInfos::addInfo(DependencyInfo info)
|
|
{
|
|
mInfos.push_back(info);
|
|
}
|