NOMAD Source  Version 4.0.0 Beta
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ParameterEntry.hpp File Reference

Parameter entry (headers) More...

#include <iostream>
#include "../Util/utils.hpp"
#include "../nomad_nsbegin.hpp"
#include "../nomad_nsend.hpp"
Include dependency graph for ParameterEntry.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ParameterEntry
 Parameter entry. More...
 
struct  ParameterEntryComp
 Allows the comparison of two ParameterEntry objects. More...
 

Functions

std::ostream & operator<< (std::ostream &out, const ParameterEntry &e)
 Display a ParameterEntry object. More...
 

Detailed Description

Parameter entry (headers)

Author
Sebastien Le Digabel
Date
2010-04-05
See Also
ParameterEntry.cpp

Definition in file ParameterEntry.hpp.

Function Documentation

std::ostream& operator<< ( std::ostream &  out,
const ParameterEntry e 
)
inline

Display a ParameterEntry object.

Parameters
outThe std::ostream object – IN.
eThe ParameterEntry object to be displayed – IN.
Returns
The std::ostream object.

Definition at line 180 of file ParameterEntry.hpp.

182 {
183  e.display(out);
184  return out;
185 }
void display(std::ostream &out) const
Display.