]> AND Private Git Repository - blast.git/blob - AbstractInputModifier.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
add graph modif, progress on vhdl generation
[blast.git] / AbstractInputModifier.cpp
1 #include "AbstractInputModifier.h"\r
2 \r
3 AbstractInputModifier::AbstractInputModifier() {\r
4 \r
5   pattern = new QList<char>();\r
6 }\r
7 \r
8 AbstractInputModifier::~AbstractInputModifier() {\r
9 \r
10   delete pattern;\r
11 }\r
12 \r
13 bool AbstractInputModifier::isDelay() {\r
14   return false;\r
15 }\r
16 \r
17 bool AbstractInputModifier::isComplexDelay() {\r
18   return false;\r
19 }\r
20 \r
21 bool AbstractInputModifier::isFIFO() {\r
22   return false;\r
23 }\r
24 \r
25 bool AbstractInputModifier::isDecimator() {\r
26   return false;\r
27 }\r
28 \r