libSplash
DCParallelGroup.hpp
1 
23 #ifndef DCPARALLELGROUP_HPP
24 #define DCPARALLELGROUP_HPP
25 
26 #include "splash/core/DCGroup.hpp"
27 
28 namespace splash
29 {
30 
34  class DCParallelGroup : public DCGroup
35  {
36 
37  public:
38  DCParallelGroup() :
39  DCGroup()
40  {
41  this->checkExistence = false;
42  }
43 
44  virtual ~DCParallelGroup()
45  {
46 
47  }
48  };
53 }
54 
55 #endif /* DCPARALLELGROUP_HPP */