//-*-c++-*- #ifndef Tulip_LabelSelection_H #define Tulip_LabelSelection_H #include /// class LabelSelection:public Selection { public: /// LabelSelection(PropertyContext *); /// ~LabelSelection(); /// bool run(); bool getNodeValue(node n); bool getEdgeValue(edge e); private: bool cancelPressed; StringProxy *stringProxy; std::vector *searchStrings; bool searchType; std::vector searchStringsDefault; }; #endif