SourcePro® API Reference Guide

 
List of all members | Public Member Functions | Static Public Member Functions | Static Public Attributes
RWMultiplicationGroup< T > Class Template Reference

Represents a collection of currencies that have a common distinguishing characteristic for converting money from one currency to money of another currency. More...

#include <rw/currency/multexchggrp.h>

Inheritance diagram for RWMultiplicationGroup< T >:
RWExchangeGroupImpl< T >

Public Member Functions

 RWMultiplicationGroup ()
 
virtual RWExchangeGroupImpl< T > * clone () const
 
virtual RWExchange< T > getExchange (const RWCString &srcMnemonic, const RWCString &tragetMnemonic, const RWExchangeRateTable &rates) const
 
virtual RWCString name () const
 
- Public Member Functions inherited from RWExchangeGroupImpl< T >
 RWExchangeGroupImpl ()
 

Static Public Member Functions

static RWExchangeGroup< T > create ()
 

Static Public Attributes

static const char * groupName
 

Detailed Description

template<class T>
class RWMultiplicationGroup< T >

Currency exchange groups are collections of currencies that have a common distinguishing characteristic for converting money from one currency to money of another currency. RWMultiplicationGroup is made up of objects that convert a source currency to a target currency by multiplying the amount of the source currency by a conversion factor.

Note
Currencies that use the triangular conversion method required by the EMU are available in class RWEuroGroup. Currencies that convert a source currency to a target currency by dividing the amount of the source by a conversion factor are available in RWDivisionGroup.

The multiplication exchange group overrides the base class method:

const RWCString& target,
const RWExchangeRateTable& rates);

so that it looks in the exchange rate table for an exchange rate that converts the source currency to the target currency. If it finds one, it creates and returns an RWExchange object with an RWMultiplicationExchange implementation. If it does not find one, it returns an invalid RWExchange object.

Synopsis
#include <rw/currency/multexchggrp.h>
RWMultiplicatonGroup multGroup;

Constructor & Destructor Documentation

template<class T >
RWMultiplicationGroup< T >::RWMultiplicationGroup ( )
inline

Default constructor. Constructs an empty group.

Member Function Documentation

template<class T >
virtual RWExchangeGroupImpl<T>* RWMultiplicationGroup< T >::clone ( ) const
inlinevirtual

Returns a copy of self allocated off the heap.

Implements RWExchangeGroupImpl< T >.

template<class T >
static RWExchangeGroup<T> RWMultiplicationGroup< T >::create ( )
static

Creates an RWExchangeGroup object with an RWMultiplicationGroup implementation.

template<class T >
virtual RWExchange<T> RWMultiplicationGroup< T >::getExchange ( const RWCString srcMnemonic,
const RWCString tragetMnemonic,
const RWExchangeRateTable rates 
) const
virtual

Creates and returns a currency exchange object for converting money in the source currency to money in the target currency using the exchange rates table rates. If the parameters are invalid, the Rogue Wave classes that derive from this class return an invalid exchange object.

Implements RWExchangeGroupImpl< T >.

template<class T >
virtual RWCString RWMultiplicationGroup< T >::name ( ) const
inlinevirtual

Returns a name to be associated with the group.

Implements RWExchangeGroupImpl< T >.

Member Data Documentation

template<class T >
const char* RWMultiplicationGroup< T >::groupName
static

Name associated with the group. Returned by the name() member function.

Copyright © 2023 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved.