0
std::pair<int*, std::size_t> p = managed_shm.find<int>("Integer"); 

can someone provide me with the definition of this find method.

skaffman
  • 398,947
  • 96
  • 818
  • 769
Shweta
  • 5,198
  • 11
  • 44
  • 58

1 Answers1

0

If you follow the code in the boost headers you'll find it, here is the starting point:

class basic_managed_shared_memory in boost/interprocess/managed_shared_memory.hpp (version 1.4.5 is what I checked, you've not specified your version!)

Nim
  • 33,299
  • 2
  • 62
  • 101