summaryrefslogtreecommitdiff
path: root/test-chill/unit-tests/cprog/QuickSorter.h
blob: 81919ddb2cb1826b50bcc258db8a11d687cbc2c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef QUICK_SORTER_H
#define QUICK_SORTER_H

#include <vector>
#include "Sorter.h"

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

#endif