mirror of
https://github.com/boostorg/property_map.git
synced 2026-01-27 07:02:14 +00:00
18 lines
362 B
C++
18 lines
362 B
C++
|
|
#include <boost/vector_property_map.hpp>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
boost::vector_property_map<std::string> m;
|
|
|
|
// Assign string to '4'.
|
|
m[4] = "e";
|
|
std::cout << "'" << m[4] << "'\n";
|
|
|
|
// Grab string from '10'. Since none is associated,
|
|
// "" will be returned.
|
|
std::cout << "'" << m[10] << "'\n";
|
|
}
|