PhoenixInkscape  2.0.0
Generate multiple png files with svg inkscape files
Option.cpp File Reference
#include "phoenix_color.h"
#include "Option.h"
+ Include dependency graph for Option.cpp:

Go to the source code of this file.

Functions

void printVecString (const PVecString &vecValue)
 Print a vector of value. More...
 

Function Documentation

◆ printVecString()

void printVecString ( const PVecString vecValue)

Print a vector of value.

Parameters
vecValue: vector of value to be ploted

Definition at line 99 of file Option.cpp.

99  {
100  if(vecValue.size() == 0lu){return;}
101  PVecString::const_iterator it(vecValue.begin());
102  std::cout << *it;
103  ++it;
104  while(it != vecValue.end()){
105  std::cout << ", " << *it;
106  ++it;
107  }
108 }

Referenced by Option::print().

+ Here is the caller graph for this function: