diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Dependency.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/Dependency.hpp b/include/Dependency.hpp new file mode 100644 index 0000000..b97c362 --- /dev/null +++ b/include/Dependency.hpp @@ -0,0 +1,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 |