'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct cost_value

odtone::mih::cost_value

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/mih/types/information.hpp>


struct cost_value {

  // public member functions
  template<typename ArchiveT> void serialize(ArchiveT &);

  // public data members
  uint32 integer;
  uint16 fraction;
};

Description

COST_VALUE data type.

cost_value public member functions

  1. template<typename ArchiveT> void serialize(ArchiveT & ar);

    Serialize/deserialize the COST_VALUE data type.

    Parameters:

    ar

    The archive to/from where serialize/deserialize the data type.

cost_value public public data members

  1. uint32 integer;

    Cost value integer part

  2. uint16 fraction;

    Cost value fraction part


PrevUpHomeNext