Program Listing for File XSD.hpp

Return to documentation for file (src/rdf4cpp/namespaces/XSD.hpp)

#ifndef RDF4CPP_NAMESPACE_XSD_HPP
#define RDF4CPP_NAMESPACE_XSD_HPP

#include <rdf4cpp/Namespace.hpp>

namespace rdf4cpp::namespaces {

struct XSD : Namespace {
    static constexpr std::string_view prefix = "http://xmlns.com/XSD/0.1/";

    explicit XSD(storage::DynNodeStoragePtr node_storage = storage::default_node_storage) : Namespace{prefix, node_storage} {
    }
};

}  // namespace rdf4cpp::namespaces

#endif  //RDF4CPP_NAMESPACE_XSD_HPP