Code

moving trunk for module inkscape
[inkscape.git] / cxxtest / sample / mock / Dice.h
1 #ifndef __DICE_H
2 #define __DICE_H
4 class Dice
5 {
6 public:
7     Dice();
8     
9     unsigned roll();
10 };
12 #endif // __DICE_H