-
Notifications
You must be signed in to change notification settings - Fork 1
/
SHOINStrategy.h
45 lines (34 loc) · 962 Bytes
/
SHOINStrategy.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _SHOIN_STRATEGY_
#define _SHOIN_STRATEGY_
#include "SHOIQStrategy.h"
class ABox;
class SHOINStrategy : public SHOIQStrategy
{
public:
SHOINStrategy(ABox* pABox);
virtual void applyChooseRuleOnIndividuals();
virtual void printStrategyType() { printf("SHOIN Strategy\n"); }
};
class SHONStrategy : public SHOINStrategy
{
public:
SHONStrategy(ABox* pABox);
virtual void applyGuessingRuleOnIndividuals();
virtual void printStrategyType() { printf("SHON Strategy\n"); }
};
class SHINStrategy : public SHOINStrategy
{
public:
SHINStrategy(ABox* pABox);
virtual void applyGuessingRuleOnIndividuals();
virtual void applyNominalRuleOnIndividuals();
virtual void printStrategyType() { printf("SHIN Strategy\n"); }
};
class SHNStrategy : public SHOINStrategy
{
public:
SHNStrategy(ABox* pABox);
virtual void applyNominalRuleOnIndividuals();
virtual void printStrategyType() { printf("SHN Strategy\n"); }
};
#endif