├── LICENSE ├── README ├── cmake ├── CMakeLists.txt └── Modules │ └── README.txt ├── example.cpp ├── example_layout.cpp ├── example_metadata.cpp └── prtio ├── detail ├── conversion.hpp ├── data_types.hpp └── prt_header.hpp ├── prt_ifstream.hpp ├── prt_istream.hpp ├── prt_layout.hpp ├── prt_meta_value.hpp ├── prt_ofstream.hpp └── prt_ostream.hpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/README -------------------------------------------------------------------------------- /cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/Modules/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/cmake/Modules/README.txt -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/example.cpp -------------------------------------------------------------------------------- /example_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/example_layout.cpp -------------------------------------------------------------------------------- /example_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/example_metadata.cpp -------------------------------------------------------------------------------- /prtio/detail/conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/detail/conversion.hpp -------------------------------------------------------------------------------- /prtio/detail/data_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/detail/data_types.hpp -------------------------------------------------------------------------------- /prtio/detail/prt_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/detail/prt_header.hpp -------------------------------------------------------------------------------- /prtio/prt_ifstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/prt_ifstream.hpp -------------------------------------------------------------------------------- /prtio/prt_istream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/prt_istream.hpp -------------------------------------------------------------------------------- /prtio/prt_layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/prt_layout.hpp -------------------------------------------------------------------------------- /prtio/prt_meta_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/prt_meta_value.hpp -------------------------------------------------------------------------------- /prtio/prt_ofstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/prt_ofstream.hpp -------------------------------------------------------------------------------- /prtio/prt_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkboxSoftware/PRT-IO-Library/HEAD/prtio/prt_ostream.hpp --------------------------------------------------------------------------------