PrevUpHomeNext

Class feature

boost::mixin::feature

Synopsis

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


class feature : public boost::mixin::internal::noncopyable {
public:
  // construct/copy/destruct
  feature(const char *, bool);

  // public data members
  feature_id id;
  const char *const name;
  bool is_private;
};

Description

feature public construct/copy/destruct

  1. feature(const char * name, bool is_private);

PrevUpHomeNext