From e031109b490900cf055dfd81122a69a671e1dd12 Mon Sep 17 00:00:00 2001 From: Mitch Watrous Date: Thu, 8 Sep 2011 18:24:47 -0700 Subject: [PATCH] Capitalize function names in gnuplot example --- src/tools/examples/gnuplot-example.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/tools/examples/gnuplot-example.cc b/src/tools/examples/gnuplot-example.cc index 81ae197d9..ab6ff8de9 100644 --- a/src/tools/examples/gnuplot-example.cc +++ b/src/tools/examples/gnuplot-example.cc @@ -27,13 +27,13 @@ using namespace ns3; namespace { //=========================================================================== -// Function: create2DPlotFile +// Function: Create2DPlotFile // // // This function creates a 2-D plot file. //=========================================================================== -void create2DPlotFile () +void Create2DPlotFile () { using namespace std; @@ -95,13 +95,13 @@ void create2DPlotFile () //=========================================================================== -// Function: create2DPlotWithErrorBarsFile +// Function: Create2DPlotWithErrorBarsFile // // // This function creates a 2-D plot with error bars file. //=========================================================================== -void create2DPlotWithErrorBarsFile () +void Create2DPlotWithErrorBarsFile () { using namespace std; @@ -175,13 +175,13 @@ void create2DPlotWithErrorBarsFile () //=========================================================================== -// Function: create3DPlotFile +// Function: Create3DPlotFile // // // This function creates a 3-D plot file. //=========================================================================== -void create3DPlotFile () +void Create3DPlotFile () { using namespace std; @@ -265,13 +265,13 @@ void create3DPlotFile () int main (int argc, char *argv[]) { // Create a 2-D plot file. - create2DPlotFile(); + Create2DPlotFile(); // Create a 2-D plot with error bars file. - create2DPlotWithErrorBarsFile(); + Create2DPlotWithErrorBarsFile(); // Create a 3-D plot file. - create3DPlotFile(); + Create3DPlotFile(); return 0; }