aboutsummaryrefslogtreecommitdiff
path: root/test/cxxtest/sample/mock/Dice.h
blob: 2ffd2562c51e54877f6d9dc7f261a8b3e4839b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __DICE_H
#define __DICE_H

class Dice
{
public:
    Dice();

    unsigned roll();
};

#endif // __DICE_H