Jpp  19.1.0-rc.1
the software that should make you happy
Public Member Functions | Private Attributes | List of all members
JEEP::JPropertiesTemplateElement< JProperties > Class Reference

Template specialisation for JProperties. More...

#include <JProperties.hh>

Inheritance diagram for JEEP::JPropertiesTemplateElement< JProperties >:
JEEP::JPropertiesElementInterface JLANG::JStreamInput JLANG::JStreamOutput JLANG::JStreamSuffixOutput

Public Member Functions

 JPropertiesTemplateElement (const JProperties &value)
 Constructor. More...
 
virtual std::istream & read (std::istream &in) override
 Stream input. More...
 
virtual std::ostream & write (std::ostream &out, const char *prefix, const char postfix) const override
 Stream output. More...
 
virtual std::ostream & write (std::ostream &out) const override
 Stream output. More...
 
virtual bool is_properties () const override
 Get properties type. More...
 
virtual bool equals (const JPropertiesElementInterface &element) const
 Equality between property element interfaces. More...
 
virtual std::ostream & write (std::ostream &out) const=0
 Stream output. More...
 

Private Attributes

JProperties object
 

Detailed Description

Template specialisation for JProperties.

Definition at line 1161 of file JProperties.hh.

Constructor & Destructor Documentation

◆ JPropertiesTemplateElement()

Constructor.

Parameters
valuereference of template bject

Definition at line 1170 of file JProperties.hh.

1170  :
1172  object(value)
1173  {}
Interface for I/O of properties element.
Definition: JProperties.hh:70

Member Function Documentation

◆ read()

virtual std::istream& JEEP::JPropertiesTemplateElement< JProperties >::read ( std::istream &  in)
inlineoverridevirtual

Stream input.

Parameters
ininput stream
Returns
input stream

Implements JLANG::JStreamInput.

Definition at line 1182 of file JProperties.hh.

1183  {
1184  object.read(in);
1185 
1186  return in;
1187  }

◆ write() [1/3]

virtual std::ostream& JEEP::JPropertiesTemplateElement< JProperties >::write ( std::ostream &  out,
const char *  prefix,
const char  postfix 
) const
inlineoverridevirtual

Stream output.

Parameters
outoutput stream
prefixprefix
postfixpostfix
Returns
output stream

Implements JLANG::JStreamSuffixOutput.

Definition at line 1198 of file JProperties.hh.

1201  {
1202  using namespace std;
1203 
1204  for (JProperties::const_iterator i = object.begin(); i != object.end(); ++i) {
1205 
1206  char c = ' ';
1207 
1208  if (i->second->is_properties()) {
1209  c = object.getDefaultDivision ();
1210  } else {
1211  c = object.getDefaultSeparator();
1212  }
1213 
1214  i->second->write(out, (prefix + i->first + c).c_str(), postfix);
1215  }
1216 
1217  out << flush;
1218 
1219  return out;
1220  }
Definition: JSTDTypes.hh:14

◆ write() [2/3]

virtual std::ostream& JEEP::JPropertiesTemplateElement< JProperties >::write ( std::ostream &  out) const
inlineoverridevirtual

Stream output.

Parameters
outoutput stream
Returns
output stream

Implements JLANG::JStreamOutput.

Definition at line 1229 of file JProperties.hh.

1230  {
1231  return writeObject(out, object);
1232  }
std::ostream & writeObject(std::ostream &out, const T &object)
Stream output of object.

◆ is_properties()

virtual bool JEEP::JPropertiesTemplateElement< JProperties >::is_properties ( ) const
inlineoverridevirtual

Get properties type.

Returns
true

Reimplemented from JEEP::JPropertiesElementInterface.

Definition at line 1240 of file JProperties.hh.

1241  {
1242  return true;
1243  }

◆ equals()

virtual bool JEEP::JPropertiesElementInterface::equals ( const JPropertiesElementInterface element) const
inlinevirtualinherited

Equality between property element interfaces.

Parameters
elementproperties element interface
Returns
false

Reimplemented in JEEP::JPropertiesTemplateElement< JProperties::JFileReader >, JEEP::JPropertiesTemplateElement< const T >, and JEEP::JPropertiesTemplateElement< T >.

Definition at line 94 of file JProperties.hh.

95  {
96  return false;
97  }

◆ write() [3/3]

virtual std::ostream& JLANG::JStreamOutput::write
inherited

Stream output.

Parameters
outoutput stream
Returns
output stream

Member Data Documentation

◆ object

Definition at line 1247 of file JProperties.hh.


The documentation for this class was generated from the following file: