473,614 Members | 2,361 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

procedure flow diagram

Are there any free software that can generate flow diagrams after I
write the C++ code? Thanks.
Jul 8 '08 #1
3 2288
On Jul 8, 12:01 am, Michael DOUBEZ <michael.dou... @free.frwrote:
Slickusera écrit :Are there any free software that can generate flow diagrams after I
write the C++ code? Thanks.

Citation from another thread:
Have you tried google?

I would add sourceforge; I know there is a c++ to UML tool but finding
it is left to the reader.

--
Michael
I have tried Google and found a couple that is not FREE. Just wonder,
what you guys use that is free.
Jul 9 '08 #2
On Jul 8, 2:28*am, Slickuser <slick.us...@gm ail.comwrote:
Are there any free software that can generate flow diagrams after I
write the C++ code? Thanks.
If you are talking about function call graphs? If so, try Doxygen.
Once you get used to it, it can generate various types of graphs
such as include graphs, function call graphs, etc.

HTH
Jul 9 '08 #3
Is it possible for Doxygen to generate a flow/procedure diagram for C+
+?

Something like this?
http://img156.imageshack.us/img156/9884/flowdy0.jpg

Code:
#include <iostream>

using namespace std;

int y()
{
int i = 0;
while(i <= 50)
{
i++;
}
return 0;
}

int x()
{
return 1;
}

int x1()
{
return 1;
}

int x2()
{
return 2;
}

int main()
{
int x;

x = 0;
while(x <= 10)
{
int y = 0;
if (x == 0)
{
x();
}
else if(x == 1)
{
x();
y();
}
else
{
x1();
}

// show even only
if (y%2 == 0)
{
x2();
}

x++;
y++;
}

}
Jul 12 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
7626
by: Rhino | last post by:
I am having a problem with a nested SQL Procedure on DB2 V8.2.1 on Windows. This simple-looking proc is giving me this error message when I try to build it in the Development Center: RHINO.CALLED01: 18: SQL0104N An unexpected token "<cursor declaration>" was found following "". Expected tokens may include: "<SQL statement>". LINE NUMBER=18 SQLSTATE=42601 Here is the source code for the proc; line 18 is the line that begins
1
3413
by: Sandy | last post by:
Is there a way to produce a data flow diagram from an MS Access 2002 (standard) database? In MS Access, I have a database that keeps track of all my jobs that run (e.g. job2 will run after job1 and job3 will run after job2), and each time I add a new job to the jobtable I would like to be able to just click on one button to generate a new flow diagram. Any help would be greatly appreciated.
0
1698
by: jackonlyone | last post by:
E-XD++ MFC Library Enterprise Edition V9.50 is released (100% Source Code)! -------------------------------------------------------------------------------- Jan 1, 2005,HongKong,UCanCode Software announces it's market leading flow/diagram C++ source code kit - E-XD++ Enterprise Edition V9.50 with VS 2005 support among latest updates. HongKong,Jan 1, 2005--UCanCode Software, Inc. announced the release of E-XD++ Enterprise Edition...
0
1397
by: kellyonlyone | last post by:
E-XD++ MFC Library Enterprise Edition V9.80 is released (100% Source Code)! ("The only Flow/Diagramming Kits that provides full source code of components for MFC and ActiveX in a single package!") -------------------------------------------------------------------------------- May 2, 2006 For more information (press only) please contact: Paul Chi UCanCode Software, Inc. Phone: (86) 755-26737501
4
4662
by: anianu | last post by:
actually i want to know how to use data flow diagram in asp.net...please explain this to me with the help of an example...i dont know how many levels are there in dfd. i dont know anything in asp.net actually.i hope that u will help me further if i ask u questions in asp.net coding if i get problem. thanks..... plz reply
0
1202
by: kellyonlyone | last post by:
E-XD++ MFC Library Enterprise Edition V11.0 is released (100% MFC/C++ Source Code)! ("The only Flow/Diagramming Kits that provides full source code of components for MFC and ActiveX in a single package!") -------------------------------------------------------------------------------- http://www.ucancode.net/XDFeature/feature.htm
2
1849
by: kelly86 | last post by:
i was given an assignment to build a program that read bin,hex files and displays on dos mode. i need a help how to create software diagram flow using the info that my lecturer gave me: 1.INPUT FILES(bin,hex,.doc 2.READ(into your buffer) 3.Arranged as struct/array) guys can u help me to create the software diagram flow....its a bit critical for me to do it!
0
1284
by: XJ | last post by:
All experts, just need to check with someone who know what kind of 3rd party software allow us to develop our system like Visual Studio 2005 Integration Services control Flow items, which i would like to create my own control flow items and provide a platform for user to create their own route or process diagram. which allow user to save also the diagram. best regards
1
1851
by: lugo | last post by:
Private Sub Command1_Click() Dim Thin As Single, Th12 As Single, Th13 As Single, Th14 As Single, Th15 As Single Dim Th16 As Single, Th17 As Single, Th18 As Single, Th19 As Single, Th110 As Single Dim Tcin As Single, Tc21 As Single, Tc22 As Single, Tc23 As Single, Tc24 As Single, Tc25 As Single Dim Tc26 As Single, Tc27 As Single, Tc28 As Single, Tc29 As Single Dim Th32 As Single, Th33 As Single, Th34 As Single, Th35 As Single, Th36 As...
0
8179
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8124
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8621
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8576
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7050
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5538
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4049
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4119
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1421
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.