1 #include <stk_mesh/base/Trace.hpp>
2 #include <stk_mesh/base/EntityKey.hpp>
3 #include <stk_mesh/base/Types.hpp>
5 #include <stk_util/environment/ReportHandler.hpp>
9 namespace stk_classic {
18 struct WatchVectorHolder {
19 WatchVectorHolder() : watch_vector() {}
22 for(std::vector<Watch*>::iterator it=watch_vector.begin();
23 it!=watch_vector.end(); ++it) {
28 std::vector<Watch*> watch_vector;
31 std::vector<Watch*>& watch_vector()
33 static WatchVectorHolder watch_vector_holder;
34 return watch_vector_holder.watch_vector;