Code Cleanup

- Mod object is no longer necessary, and is removed.
This commit is contained in:
Paul Beckingham 2009-06-03 21:10:12 -04:00
parent ac871d9e8d
commit 55771cc999
9 changed files with 148 additions and 240 deletions

View file

@ -30,7 +30,6 @@
#include <string>
#include <vector>
#include "Nibbler.h"
#include "Mod.h"
class Att
{
@ -43,10 +42,12 @@ public:
~Att (); // Destructor
bool parse (Nibbler&);
bool validMod (const std::string&);
bool evalMod (Att&);
std::string composeF4 () const;
void addMod (const Mod&);
void mods (std::vector <Mod>&);
void addMod (const std::string&);
void mods (std::vector <std::string>&);
std::string name () const;
void name (const std::string&);
@ -66,7 +67,7 @@ private:
private:
std::string mName;
std::string mValue;
std::vector <Mod> mMods;
std::vector <std::string> mMods;
};
#endif