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
373 B
21 lines
373 B
2 years ago
|
#ifndef PACKAGEWITHSUBPACKAGES_A_HPP_
|
||
|
#define PACKAGEWITHSUBPACKAGES_A_HPP_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace WithSubpackages {
|
||
|
|
||
|
// return a string containing "A"
|
||
|
std::string getA();
|
||
|
|
||
|
// return a string describing the dependencies of "A", recursively
|
||
|
std::string depsA();
|
||
|
|
||
|
// return special value
|
||
|
int specialValue();
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* PACKAGEWITHSUBPACKAGES_A_HPP_ */
|