Cloned SEACAS for EXODUS library with extra build files for internal package management.
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.
 
 
 
 
 
 

20 lines
373 B

#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_ */