*/
bool operator== (const BlockMask &mask) const;
+ /**
+ * Return whether this object and the argument are not identical.
+ */
+ bool operator!= (const BlockMask &mask) const;
+
/**
* Determine an estimate for the
* memory consumption (in bytes)
}
+inline
+bool
+BlockMask::operator!= (const BlockMask &mask) const
+{
+ return block_mask != mask.block_mask;
+}
+
+
DEAL_II_NAMESPACE_CLOSE
#endif
*/
bool operator== (const ComponentMask &mask) const;
+ /**
+ * Return whether this object and the argument are not identical.
+ */
+ bool operator!= (const ComponentMask &mask) const;
+
/**
* Determine an estimate for the
* memory consumption (in bytes)
}
+inline
+bool
+ComponentMask::operator!= (const ComponentMask &mask) const
+{
+ return component_mask != mask.component_mask;
+}
+
+
+
DEAL_II_NAMESPACE_CLOSE
#endif
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams