#include "Exception.h"
class Exception;
+
using namespace std;
using namespace Qt;
// testers
bool isGroupInterface();
- bool canConnectTo(AbstractInterface* iface);
- bool canConnectFrom(AbstractInterface* iface);
+ bool canConnectTo(AbstractInterface* iface, bool testClock);
+ bool canConnectFrom(AbstractInterface* iface, bool testClock);
// others
AbstractInterface *clone();
+ QList<ConnectedInterface *> getForwardFunctionalInterfaces(GroupInterface* groupIface);
+
void connectionsValidation(QStack<AbstractInterface *> *interfacetoValidate, QList<AbstractInterface *> *validatedInterfaces) throw(Exception);
};