Tekkotsu Homepage
Demos
Overview
Downloads
Dev. Resources
Reference
Credits

Parser.cc

Go to the documentation of this file.
00001 // Tekkodu Library
00002 #include "Kodu/Parsing/Parser.h"
00003 
00004 namespace Kodu {
00005     
00006     bool Parser::isValidColor(const std::string& str) {
00007         return (koduColorKeywords.count(str) > 0);
00008     }
00009 
00010     bool Parser::isValidComparisonOperator(const std::string& str) {
00011         return (koduCompKeywords.count(str) > 0);
00012     }
00013 
00014     bool Parser::isValidScoreLetter(const std::string& str) {
00015         return (koduScoreLetterKeywords.count(str) > 0);
00016     }
00017 }

Tekkotsu v5.1CVS
Generated Mon May 9 04:58:45 2016 by Doxygen 1.6.3