My Project
countEffect2.cc
Go to the documentation of this file.
1 /* countEffect2.cc
2  */
4 #include <sstream>
5 
7 
8 std::string
9 osl::rating::CountEffect2::name(int attack, int defense)
10 {
11  std::ostringstream ss;
12  ss << attack << defense;
13  return ss.str();
14 }
15 
16 
17 /* ------------------------------------------------------------------------- */
18 // ;;; Local Variables:
19 // ;;; mode:c++
20 // ;;; c-basic-offset:2
21 // ;;; End:
osl::rating::CountEffect2::defense
int defense
Definition: countEffect2.h:17
osl::rating::CountEffect2::name
static std::string name(int attack, int defense)
Definition: countEffect2.cc:9
osl::rating::CountEffect2::attack
int attack
Definition: countEffect2.h:17
osl::rating::CountEffect2::Max
static const int Max
Definition: countEffect2.h:16
countEffect2.h