Jpp 19.3.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
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.
 
virtual std::istream & read (std::istream &in) override
 Stream input.
 
virtual std::ostream & write (std::ostream &out, const char *prefix, const char postfix) const override
 Stream output.
 
virtual std::ostream & write (std::ostream &out) const override
 Stream output.
 
virtual bool is_properties () const override
 Get properties type.
 
virtual bool equals (const JPropertiesElementInterface &element) const
 Equality between property element interfaces.
 

Private Attributes

JProperties object
 

Detailed Description

Template specialisation for JProperties.

Definition at line 1161 of file JProperties.hh.

Constructor & Destructor Documentation

◆ JPropertiesTemplateElement()

JEEP::JPropertiesTemplateElement< JProperties >::JPropertiesTemplateElement ( const JProperties & value)
inline

Constructor.

Parameters
valuereference of template bject

Definition at line 1170 of file JProperties.hh.

1170 :
1171 JPropertiesElementInterface(),
1172 object(value)
1173 {}

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/2]

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

Reimplemented from JEEP::JPropertiesElementInterface.

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 }

◆ write() [2/2]

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

Stream output.

Parameters
outoutput stream
Returns
output stream

Reimplemented from JEEP::JPropertiesElementInterface.

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< T >, JEEP::JPropertiesTemplateElement< const T >, and JEEP::JPropertiesTemplateElement< JProperties::JFileReader >.

Definition at line 94 of file JProperties.hh.

95 {
96 return false;
97 }

Member Data Documentation

◆ object

Definition at line 1247 of file JProperties.hh.


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