You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
335 B
21 lines
335 B
2 years ago
|
#include <sstream>
|
||
|
|
||
|
#include "Tpl2a.hpp"
|
||
|
#include "Tpl2b.hpp"
|
||
|
#include "Tpl3.hpp"
|
||
|
|
||
|
std::string Tpl3::itsme()
|
||
|
{
|
||
|
return "Tpl3";
|
||
|
}
|
||
|
|
||
|
std::string Tpl3::deps()
|
||
|
{
|
||
|
std::ostringstream oss;
|
||
|
oss
|
||
|
<< Tpl2::a_itsme() << "{" << Tpl2::a_deps() << "}"
|
||
|
<< ", "
|
||
|
<< Tpl2::b_itsme() << "{" << Tpl2::b_deps() << "}";
|
||
|
return oss.str();
|
||
|
}
|