Continued to flesh out merge subsystem.

This commit is contained in:
Jim Evins
2016-05-01 22:42:03 -04:00
parent 3cd0806792
commit 2ff07f01b3
12 changed files with 614 additions and 129 deletions
+11 -31
View File
@@ -29,6 +29,13 @@
///
struct MergeField
{
/////////////////////////////////
// Life Cycle
/////////////////////////////////
public:
MergeField();
MergeField( const QString& key, const QString& value );
/////////////////////////////////
// Properties
@@ -37,15 +44,15 @@ public:
//
// Key Property
//
inline const QString key( void ) const;
inline void setKey( const QString &value );
const QString key( void ) const;
void setKey( const QString& value );
//
// Value Property
//
inline const QString value( void ) const;
inline void setValue( const QString &value );
const QString value( void ) const;
void setValue( const QString& value );
/////////////////////////////////
@@ -58,31 +65,4 @@ private:
};
/////////////////////////////////
// INLINE METHODS
/////////////////////////////////
const QString MergeField::key( void ) const
{
return mKey;
}
void MergeField::setKey( const QString &value )
{
mKey = value;
}
const QString MergeField::value( void ) const
{
return mValue;
}
void MergeField::setValue( const QString &value )
{
mValue = value;
}
#endif // MergeField_h