diff --git a/Solver/functionSpace.h b/Solver/functionSpace.h index 7de364be48731d8f3c3b541951214e243453d09b..09cddbe88c33887863b2f70c854372b8830f5039 100644 --- a/Solver/functionSpace.h +++ b/Solver/functionSpace.h @@ -69,6 +69,9 @@ class FunctionSpaceBase virtual ~FunctionSpaceBase(){} virtual int getNumKeys(MElement *ele) = 0; // if one needs the number of dofs virtual void getKeys(MElement *ele, std::vector<Dof> &keys) = 0; + virtual void getKeysOnVertex(MElement* ele, MVertex* v, const std::vector<int>& comp, std::vector<Dof>& keys){ + Msg::Warning("this function is defined to get Dofs of vertex %d on element %d",v->getNum(),ele->getNum()); + } virtual FunctionSpaceBase* clone(const std::vector<int>& comp) const {return NULL;} };