Author Topic: memory detecting tool embeded in Code::Blocks for Windows, create a new plugin?  (Read 2462 times)

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 6025
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Hi, we already have a plugin named "Valgrind plugin", see some images here: How to use valgrind in code::blocks?

But Valgrind plugin is mainly for Linux. I see a similar tool under Windows, named "heob", see here: heob

QTCreator has already embeded this tool, see here: Profiling and Memory Checking Tools - Qt Wiki and Heob | Qt Creator Documentation

So, what I need to do is: copy the code of Valgrind plugin, and modify the code to support heob tool.

Any good ideas? Thanks.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.