aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/pairuser.h
blob: 27cf7668140208930b747651a4531bb81d7b773a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef PAIRUSER_H
#define PAIRUSER_H

#include <utility>
#include "complex.h"

class PairUser
{
public:
    PairUser() {}
    ~PairUser() {}

    virtual std::pair<int, int> createPair();
    std::pair<int, int> callCreatePair();
    static std::pair<Complex, Complex> createComplexPair(Complex cpx0, Complex cpx1);
    double sumPair(std::pair<int, double> pair);
};
#endif // PAIRUSER_H