MINT2
Classes | Namespaces | Functions
NamedParameterBase.h File Reference
#include <string>
#include <istream>
#include <sstream>
#include <iostream>
#include <vector>
#include "Mint/INamedParameter.h"

Go to the source code of this file.

Classes

class  MINT::NamedParameterBase
 

Namespaces

 MINT
 

Functions

std::stringstream & operator>> (std::stringstream &is, MINT::NamedParameterBase &npb)
 

Function Documentation

◆ operator>>()

std::stringstream& operator>> ( std::stringstream &  is,
MINT::NamedParameterBase npb 
)

Definition at line 164 of file NamedParameterBase.cpp.

165  {
166  std::string str;
167  is >> str;
168  npb.setFromInitStringNoName(str);
169  return is;
170 }
bool setFromInitStringNoName(const std::string &str_in)