1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/***************************************************************************
Functions.h - list of simple periodic functions
-------------------
begin : Jan 21 2001
copyright : (C) 2001 by Thomas Eschenbacher
email : Thomas Eschenbacher <thomas.eschenbacher@gmx.de>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef FUNCTIONS_H
#define FUNCTIONS_H
#include "config.h"
#include "libkwave/TypesMap.h"
#include <QString>
namespace Kwave
{
/**
* @class Functions
* Holds a list of simple periodic arithmetic functions. All functions are
* normed to work within the interval [0...2 Pi]
*/
class Functions
{
public:
typedef double(periodic_function_t)(double);
/** Constructor */
Functions();
/** Destructor */
virtual ~Functions();
/** Returns the number of functions */
unsigned int count() const;
/**
* Returns the name of a function. If the index is out of range,
* the returned name will be that of the "zero()" function.
* @param index [0...count-1]
*/
QString name(unsigned int index);
/**
* Returns a reference to a function. If the index is out of range,
* the returned function will be "zero()".
* @param index [0...count-1]
*/
periodic_function_t &function(unsigned int index) const;
private:
class FunctionTypesMap:
public Kwave::TypesMap< unsigned int, periodic_function_t* >
{
public:
/** Constructor */
explicit FunctionTypesMap()
:Kwave::TypesMap<unsigned int, periodic_function_t *>()
{
fill();
}
/** fills the types map */
void fill() override;
};
/** map of periodic functions */
FunctionTypesMap m_functions_map;
};
}
#endif /* FUNCTIONS_H */
//***************************************************************************
//***************************************************************************
|