/*--------------------------------------------------
 header file for function describe_grade
   created by smtuttle at Thu Oct 20 14:12:54 PDT 2016
--------------------------------------------------*/
#ifndef describe_grade_H
#define describe_grade_H

#include <string>
using namespace std;

const string A_DESCR = "Excellent";
const string B_DESCR = "Barely Braggable";
const string C_DESCR = "Cool";
const string T_DESCR = "Try Again";
const string OTHER_DESCR = "Unrecognized Grade";

string describe_grade(char letter_grade);

#endif