I have the fallowing classes:

class CpuUsage {
public:
    CpuUsage();
    virtual ~CpuUsage();

    void SetCpuTotalTime(CpuCore _newVal);
    CpuCore GetCpuTotalTimes();

    void AddSingleCoreTime(CpuCore& newval);
private:
    CpuCore total;
    boost::ptr_vector<CpuCore> cpuCores;
};

and

class CpuCore {

public:
    CpuCore();
    CpuCore(int _coreId, long _user, long _nice, long _sysmode,
        long _idle, long _iowait, long _irq, long _softirq, long _steal,
        long _guest);

//all variable declarations...
}

For adding CpuCore objects into the cpuCores vector, should I add a pointer? Or I can copy the value, normaly, like:

void CpuUsage::AddSingleCoreTime(CpuCore _newVal) {
    cpuCores.push_back(_newVal);
}

With the CpuCore *_newVal parameter, I have the following error:
../src/usage/CpuUsage.h:42: error: ‘boost::ptr_vector > CpuUsage::cpuCores’ is private ../src/NodeInfoGather.cpp:73: error: within this context

What the problem of the vector being private here?

Thanks,

link|improve this question

You should be adding a pointer, boost::ptr_vector<> owns its pointers and the things they point to. Why not using just std::vector<>? – K-ballo Nov 9 '11 at 15:30
I am using boost ptr vector inspired in this post: stackoverflow.com/questions/2693651/… – Pedro Dusso Nov 9 '11 at 15:32
1  
You don't seem to have polymorphism over CpuCore at your given code. Yet the code posted is not real, the declaration and definition for AddSingleCoreTime are different. – K-ballo Nov 9 '11 at 15:34
2  
What you should or should not write depends on things you havn't told us yet. What are the desired ownership relationships between the involved objects in your design? Are you familiar with the "ownership" concept with respect to resource management in C++? What do you think is the purpose of boost::ptr_vector? – sellibitze Nov 10 '11 at 12:36
@sellibitze - thats what im strugling right now. I dont know this ownership concept in the resource mgnt, im sorry. I expected that the vector could hold my elements in a way that when I destroy the class, they are destroyed also and their memory is free. – Pedro Dusso Nov 11 '11 at 12:00
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

You have to add a pointer to ptr_vector. Note that it will take ownership of that pointer, so just doing

cpuCores.push_back(&_newVal);

might screw things up badly. If you really want it though (which is not clear from your question) you could implement a virtual constructor.

link|improve this answer
yeap, it really worked. But I will revise my architecture, maybe I really do not need the pointer vector - i still have to understand this ownership of c++ – Pedro Dusso Nov 13 '11 at 10:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.