I have an abstract class in my dll. class IBase { protected: virtual ~IBase() = 0; public: virtual void f() = 0;
I am trying to create a data buffer, more specifically, an image buffer, which will be shared among multiple modules. Those modules only reads from the buffer and don\'t communicate with each other at
How to get Eclipse CDT to treat shared_ptr as T * for syntax completion? I\'m using windows in this instance. I have 1.39 in the \"Program Files\" folder. I am about to try 1.37.
I\'ve tried to build a very minimalistic memory read library to read some unsigned ints out of it. However, I run into a \"HEAP CORRUPTION DETECTED\" error message when the ReadUnsignedInt method want
All, I recently posted this question on DAL design.From that it would seem that passing a reference to an object into a function, with the function then populating that object, would be a good interf
Can boost::shared_ptr release the stored pointer without deleting it? I can see no release fu开发者_运维技巧nction exists in the documentation, also in the FAQ is explained why it does not provide re