Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > b908fbf6412c51882b2aebf8342c549f > files > 128

libecasound-devel-2.5.2-2mdv2009.1.i586.rpm

#ifndef INCLUDED_PRESET_IMPL_H
#define INCLUDED_PRESET_IMPL_H

#include <string>
#include <vector>
 
#include "eca-chainop.h"
#include "sample-specs.h"

using std::string;
using std::vector;

class AUDIO_IO;
class GENERIC_CONTROLLER;
class OPERATOR;

class PRESET_impl {

 public:

  friend class PRESET;

 private:

  vector<string> preset_param_names_rep;

  vector<vector<int> > slave_param_indices_rep;
  vector<vector<DYNAMIC_OBJECT<SAMPLE_SPECS::sample_t>* > > slave_param_objects_rep;

  vector<GENERIC_CONTROLLER*> gctrls_rep;
  vector<OPERATOR::PARAM_DESCRIPTION*> pardesclist_rep;

  bool parsed_rep;
  std::string parse_string_rep;
  std::string name_rep;
  std::string description_rep;

};

#endif /* INCLUDED_PRESET_IMPL_H */