tudocomp
– The TU Dortmund Compression Framework
Path.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 namespace tdc{namespace io {
8  struct Path {
9  explicit inline Path(const std::string& p):
10  path(p) {}
11 
13  std::string path;
14  };
15 }}
Contains the text compression and encoding framework.
Definition: namespaces.hpp:11
std::string path
The path string.
Definition: Path.hpp:13
Path(const std::string &p)
Definition: Path.hpp:9
Represents a file path.
Definition: Path.hpp:8