aboutsummaryrefslogtreecommitdiff
path: root/include/Dependency.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Dependency.hpp')
-rw-r--r--include/Dependency.hpp16
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