Sierra Toolkit  Version of the Day
ParallelInputStream.hpp
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2010 Sandia Corporation. */
3 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */
4 /* license for use of this work by or on behalf of the U.S. Government. */
5 /* Export of this program may require a license from the */
6 /* United States Government. */
7 /*------------------------------------------------------------------------*/
8 
9 #ifndef stk_util_parallel_ParallelInputStream_hpp
10 #define stk_util_parallel_ParallelInputStream_hpp
11 
12 #include <stk_util/parallel/Parallel.hpp>
13 #include <istream>
14 
15 namespace stk_classic {
16 
17 class ParallelInputStream : public std::istream {
18 public:
19  ParallelInputStream( ParallelMachine comm , const char * const file_name );
20  virtual ~ParallelInputStream();
21 };
22 
23 }
24 
25 //----------------------------------------------------------------------
26 
27 #endif
28 
Sierra Toolkit.
MPI_Comm ParallelMachine
Definition: Parallel.hpp:32