Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1093027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:46:11+00:00 2026-05-16T23:46:11+00:00

I have two classes: an Object class, and an ObjectManager class. The ObjectManager class

  • 0

I have two classes: an Object class, and an ObjectManager class. The ObjectManager class stores “Objects” via a ptr_vector container. There are some instances where I need to retrieve references to these stored pointers to perform individual actions on them. How would I go about doing so?

Compilable Pseudo Code:

#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/shared_ptr.hpp>

class Object
{
public:
  int m_Id;
  Object(int id) : m_Id(id) { }
};

class ObjectManager
{
private:
  typedef boost::shared_ptr<Object> ObjectPtr;
  typedef boost::ptr_vector<Object> ObjectVectorPtr;
  typedef ObjectVectorPtr::iterator ObjectIt;

  ObjectVectorPtr vector_;

  void AddObject(Object *obj) {
    vector_.push_back(obj);
  }

  ObjectPtr FindObject(int id) {
    for (ObjectIt it = vector_.begin(); it != vector_.end(); it++) {
      if (it->m_Id == id) {
        // Found the object...How to return a shared_ptr reference to it?
        // The line below is invalid, obviously:
        // cannot convert parameter 1 from 'Object' to 'const boost::shared_ptr<T> &'
        return *it;
      }
    }

    // We could not find anything.
    return ObjectPtr();
  }
};

Basically I want the ObjectManager to retain ownership, but I also want other classes to be able to get a reference to the object, use call methods on that object depending on what’s going on, and move on.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T23:46:11+00:00Added an answer on May 16, 2026 at 11:46 pm

    Convert your container to use shared_ptr as the member:

    #include <boost/ptr_container/ptr_vector.hpp>
    #include <boost/shared_ptr.hpp>
    #include <vector>
    
    class Object
    {
    public:
      int m_Id;
      Object(int id) : m_Id(id) { }
    };
    
    class ObjectManager
    {
    private:
      typedef boost::shared_ptr<Object> ObjectPtr;
      typedef std::vector<ObjectPtr> ObjectVectorPtr;
      typedef ObjectVectorPtr::iterator ObjectIt;
    
      ObjectVectorPtr vector_;
    
      void AddObject(ObjectPtr& obj) {
        vector_.push_back(obj);
      }
    
      ObjectPtr FindObject(int id) {
        for (ObjectIt it = vector_.begin(); it != vector_.end(); ++it) {
          if (it->get()->m_Id == id) {
            // Found the object - return a shared_ptr reference to it
            return ObjectPtr(*it);
          }
        }
    
        // We could not find anything.
        return ObjectPtr();
      }
    };
    

    btw – prefer ++it vs it++ to avoid extra construction, and don’t use matching like this if the container gets large – switch to std::map<int, ObjectPtr> with m_id as the key, or std::set with suitably-defined less function.

    If I was being super-pedantic I would suggest replacing your find loop with a call to std::find_if, with a predicate that matches on Object::m_id…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that contains objects of two other classes. I need one
I have two classes: class Base(object): def __init__(self): object.__init__(self) def print_methods(self): print self.__dict__ class
I have two classes: class Translation(models.Model): content_type = models.ForeignKey(ContentType) object_id = models.PositiveIntegerField() object =
I have two classes like the following: class Super(object): def __init__(self, arg): self.arg =
In Java I have two classes: Class A { public String ID; public Object
I have two classes: class Dog(object): def __init__(self, name): self.name = name class Toy(object):
I have two classes: class Object { public: Object(); virtual void update(); virtual void
Let's say, I have the following two classes: class A(object): def __init__(self, i): self.i
I'm having some trouble in python with classes and objects. I have two classes,
I am really confused about object relationships! I have two classes Person and Address.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.