countEffect2.cc
Go to the documentation of this file.
00001 /* countEffect2.cc
00002  */
00003 #include "osl/rating/feature/countEffect2.h"
00004 #include <sstream>
00005 
00006 const int osl::rating::CountEffect2::Max;
00007 
00008 std::string 
00009 osl::rating::CountEffect2::name(int attack, int defense) 
00010 {
00011   std::ostringstream ss;
00012   ss << attack << defense;
00013   return ss.str();
00014 }
00015 
00016 
00017 /* ------------------------------------------------------------------------- */
00018 // ;;; Local Variables:
00019 // ;;; mode:c++
00020 // ;;; c-basic-offset:2
00021 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines