YAPOG  0.0.1
Yet Another Pokemon Online Game
AnyFrameSwitcher.cpp
Go to the documentation of this file.
2 
3 namespace yap
4 {
6 
8  : FrameSwitcher ()
9  , switchCount_ (DEFAULT_SWITCH_COUNT)
10  {
11  }
12 
14  : FrameSwitcher ()
15  , switchCount_ (switchCount)
16  {
17  }
18 
20  {
21  }
22 
24  : FrameSwitcher (copy)
25  , switchCount_ (copy.switchCount_)
26  {
27  }
28 
30  {
31  return new AnyFrameSwitcher (*this);
32  }
33 
35  {
36  return switchCount_;
37  }
38 } // namespace yap