Enhancement - Mod/Att interaction
- New unit tests for Mod object. - Added new constructors to Mod object for ease of use. - Added Mod handling in Att object. - Added more Att unit tests.
This commit is contained in:
@@ -34,10 +34,12 @@ class Mod;
|
||||
class Mod : public std::string
|
||||
{
|
||||
public:
|
||||
Mod (); // Default constructor
|
||||
~Mod (); // Destructor
|
||||
Mod (); // Default constructor
|
||||
Mod (const char*); // Copy constructor
|
||||
Mod (const std::string&); // Copy constructor
|
||||
~Mod (); // Destructor
|
||||
|
||||
bool isValid ();
|
||||
bool valid ();
|
||||
bool eval (const Mod&);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user