Skip to content

Commit

Permalink
IO/VTK: declare the constructors of VTKRectilinearGrid as public
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-iob committed Jan 31, 2020
1 parent 2ece2e4 commit 4c34766
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/IO/VTK.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,14 +461,15 @@ class VTKRectilinearGrid : public VTK{
extension3D_t m_globalIndex ; /**< min and max indices of global grid */
std::vector<extension3D_t> m_procIndex ; /**< global indices of each processors */

protected:
public:
VTKRectilinearGrid();
VTKRectilinearGrid( const std::string & , const std::string & );
VTKRectilinearGrid( const std::string & , const std::string & , VTKFormat, int, int, int, int, int, int );
VTKRectilinearGrid( const std::string & , const std::string & , VTKFormat, int, int, int );
VTKRectilinearGrid( const std::string & , const std::string & , VTKFormat, int, int, int, int );
VTKRectilinearGrid( const std::string & , const std::string & , VTKFormat, int, int );

protected:
void writeCollection() override ;

public:
Expand Down

0 comments on commit 4c34766

Please sign in to comment.