is there any library that parse a source code of C++ to produce lets say, call graph, class inheritance tree, flow control, class member list or anything as a ready to use graph or structure in code (
I am trying to modularize a function that used to add values to multiple structures in one call. Now I want to do one value addition per call, but I am not sure how to 开发者_Go百科make a less specifi
i need to help with structures, inheritance and definition. //define struct struct tStruct1{ int a; }; //definition
I\'m somewhat new to Android and am in the process of designing an application with a couple fairly complex views.One of the views is intended to involve a complex view displaying information associat
I\'m investigating using Kohana for my next project. The site will consist of user registration (and hence user profiles) where users will have certain privileges. The site will also have an admin sec
I\'m taking over a project with which the company are pretty unhappy with the usability of 开发者_开发百科the website. It\'s using django, and the website is a very content based, user driven website.
Hi I am working on a program where I have to initialize a deck of cards. I am using a struct to represent a card. However I\'m not filling it correctly as I get a bunch of zero\'s when I display the d
We have nested stuctures as such, used as an interface for some device drivers. On occasion we have to update individual elements. An \'address of\' operator would be helpful, but an \'offset\' functi
Am having a set of structure variable in one form, i want to use that structure variable as a global variables. i need to use those structure vari开发者_开发问答able in through out my whole applicatio
I am migrating some C++ code from structures to classes. I was using structures mainly for bit-field optimizations which I do not need any more (I am more worried about speed than saving space now).