PhoenixMock  1.8.7
Tools to split/merge/print mock used in Phoenix
Option.cpp File Reference
#include "string_utils.h"
#include "Option.h"
+ Include dependency graph for Option.cpp:

Go to the source code of this file.

Functions

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

Function Documentation

◆ printVecString()

void printVecString ( const VecValue vecValue)

Print a vector of value.

Parameters
vecValue: vector of value to be ploted

Definition at line 92 of file Option.cpp.

92  {
93  if(vecValue.size() == 0lu){return;}
94  VecValue::const_iterator it(vecValue.begin());
95  std::cout << *it;
96  ++it;
97  while(it != vecValue.end()){
98  std::cout << ", " << *it;
99  ++it;
100  }
101 }

Referenced by Option::print().

+ Here is the caller graph for this function: