|
MMTF-C++
The C++ language MMTF libraries
|
#include "structure_data.hpp"#include "errors.hpp"#include "msgpack_decoders.hpp"#include <fstream>#include <sstream>#include <string>Go to the source code of this file.
Namespaces | |
| mmtf | |
Functions | |
| void | mmtf::decodeFromMapDecoder (StructureData &data, MapDecoder &mapDecoder) |
| Decode an MMTF data structure from a mapDecoder. More... | |
| void | mmtf::decodeFromBuffer (StructureData &data, const char *buffer, size_t size) |
| Decode an MMTF data structure from a byte buffer. More... | |
| template<typename Stream > | |
| void | mmtf::decodeFromStream (StructureData &data, Stream &stream) |
| Decode an MMTF data structure from a stream. More... | |
| void | mmtf::decodeFromFile (StructureData &data, const std::string &filename) |
| Decode an MMTF data structure from an existing file. More... | |
| void | mmtf::mapDecoderFromBuffer (MapDecoder &mapDecoder, const char *buffer, std::size_t size) |
| Get a mapDecoder for un-decoded MMTF data. More... | |
| template<typename Stream > | |
| void | mmtf::mapDecoderFromStream (MapDecoder &mapDecoder, Stream &stream) |
| Get a mapDecoder into an un-decoded MMTF data. More... | |
| void | mmtf::mapDecoderFromFile (MapDecoder &mapDecoder, const std::string &filename) |
| Get a mapDecoder into an un-decoded MMTF data. More... | |