PrevUpHomeNext

Class mutation_rule

boost::mixin::mutation_rule — Base class for all mutation rules.

Synopsis

// In header: <boost/mixin/mutation_rule.hpp>


class mutation_rule {
public:
  // construct/copy/destruct
  ~mutation_rule();

  // public member functions
  void apply_to(object_type_mutation &);
};

Description

mutation_rule public construct/copy/destruct

  1. ~mutation_rule();

mutation_rule public member functions

  1. void apply_to(object_type_mutation & mutation);
    Called when applying the mutation rule.

PrevUpHomeNext