owlcpp  v0.3.3~
C++ library for working with OWL ontologies
 All Classes Namespaces Files Functions Macros Pages
doc_meta.hpp
Go to the documentation of this file.
1 
6 #ifndef DOC_META_HPP_
7 #define DOC_META_HPP_
8 #include <string>
9 #include "owlcpp/node_id.hpp"
10 
11 namespace owlcpp{
12 
15 struct Doc_meta {
16  Doc_meta(
17  const Node_id ontology_iri_,
18  const Node_id version_iri_,
19  std::string const& path_
20  )
21  : ontology_iri(ontology_iri_), version_iri(version_iri_), path(path_)
22  {}
23 
24  Node_id ontology_iri;
25  Node_id version_iri;
26  std::string path;
27 };
28 
29 }//namespace owlcpp
30 #endif /* DOC_META_HPP_ */