OpenVDB 10.0.1
Loading...
Searching...
No Matches
Name.h
Go to the documentation of this file.
1// Copyright Contributors to the OpenVDB Project
2// SPDX-License-Identifier: MPL-2.0
3
4#ifndef OPENVDB_UTIL_NAME_HAS_BEEN_INCLUDED
5#define OPENVDB_UTIL_NAME_HAS_BEEN_INCLUDED
6
7#include <openvdb/Platform.h>
8#include <openvdb/version.h>
9#include <string>
10#include <iostream>
11#include <vector>
12
13namespace openvdb {
15namespace OPENVDB_VERSION_NAME {
16
17typedef std::string Name;
18
19inline Name
20readString(std::istream& is)
21{
22 uint32_t size;
23 is.read(reinterpret_cast<char*>(&size), sizeof(uint32_t));
24 std::string buffer(size, ' ');
25 if (size>0) is.read(&buffer[0], size);
26 return buffer;
27}
28
29
30inline void
31writeString(std::ostream& os, const Name& name)
32{
33 uint32_t size = uint32_t(name.size());
34 os.write(reinterpret_cast<char*>(&size), sizeof(uint32_t));
35 os.write(&name[0], size);
36}
37
38} // namespace OPENVDB_VERSION_NAME
39} // namespace openvdb
40
41#endif // OPENVDB_UTIL_NAME_HAS_BEEN_INCLUDED
std::string Name
Definition: Name.h:17
Name readString(std::istream &is)
Definition: Name.h:20
void writeString(std::ostream &os, const Name &name)
Definition: Name.h:31
Definition: Exceptions.h:13
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
Definition: version.h.in:121
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h.in:212