I have a class that has this function:
typedef boost::shared_ptr<PrimShapeBase> sp_PrimShapeBase; class Control{ public:
The compiler tells me that the boost :: shared_ptr class does not have a member called "RenderShape", which I find strange, since the PrimShapeBase class certainly has this function, but is in a different header file. What is the reason for this?
starhacker
source share