blob: b97c3621b9e4cf3aae6eff1cacc6f3bb813e9bd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef SIBS_DEPENDENCY_HPP
#define SIBS_DEPENDENCY_HPP
#include <string>
namespace sibs
{
class Dependency
{
public:
std::string name;
std::string version;
};
}
#endif //SIBS_DEPENDENCY_HPP
|