mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
lib/ip: provide default implementation for getDependencies()
This commit is contained in:
parent
cb25861c7e
commit
af234e29c6
3 changed files with 1 additions and 7 deletions
|
@ -148,7 +148,7 @@ private:
|
|||
virtual Vlnv getCompatibleVlnv() const = 0;
|
||||
virtual std::string getName() const = 0;
|
||||
virtual std::string getDescription() const = 0;
|
||||
virtual std::list<IpDependency> getDependencies() const = 0;
|
||||
virtual std::list<IpDependency> getDependencies() const { return {}; }
|
||||
|
||||
private:
|
||||
static IpCoreFactory*
|
||||
|
|
|
@ -87,9 +87,6 @@ public:
|
|||
|
||||
Vlnv getCompatibleVlnv() const
|
||||
{ return Vlnv("acs.eonerc.rwth-aachen.de:user:axi_pcie_intc:"); }
|
||||
|
||||
std::list<IpDependency> getDependencies() const
|
||||
{ return {}; }
|
||||
};
|
||||
|
||||
} // namespace ip
|
||||
|
|
|
@ -82,9 +82,6 @@ public:
|
|||
|
||||
Vlnv getCompatibleVlnv() const
|
||||
{ return Vlnv("xilinx.com:ip:axis_interconnect:"); }
|
||||
|
||||
std::list<IpDependency> getDependencies() const
|
||||
{ return {}; }
|
||||
};
|
||||
|
||||
} // namespace ip
|
||||
|
|
Loading…
Add table
Reference in a new issue