aboutsummaryrefslogtreecommitdiff
path: root/oop2w2/AutomaticNumberGuesser.h
blob: a0a99eb9f3f241ec241424b19c18a92f64983d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

/*
 * NO NOT ADAPT THIS FILE
 */

class NumberGuessGame;

class AutomaticNumberGuesser
{
public:
                            AutomaticNumberGuesser();
    virtual                ~AutomaticNumberGuesser();

public:
    virtual void            process( NumberGuessGame& );
};