summaryrefslogtreecommitdiff
path: root/test-chill/unit-tests/cprog/Sorter.h
blob: abf8f827846b3efc1e736d791cbe980cc1e0797c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SORTER_H
#define SORTER_H

#include <string>
#include <vector>

class Sorter {
public:
    Sorter();
    virtual ~Sorter();
    
    std::string name;
    virtual void sort(std::vector<int>& list) const = 0;
};

#endif