#include <iostream>
#include <fstream>
#include <string>
#include <cassert>
#include <vector>
Functions | |
void | readSmfFile (std::istream &smfFile, std::vector< double > &vertexVariables, int &numVariablesPerVtx, std::vector< int > &connectivity, int &numNodesPerElem, std::vector< std::string > &variableNames) |
void | printVTK (std::ostream &vtuFile, std::vector< double > &vertexVariables, int &numVariablesPerVtx, std::vector< int > &connectivity, int &numNodesPerElem, std::vector< std::string > &variableNames) |
int | main (int argc, char **argv) |
int main | ( | int | argc, | |
char ** | argv | |||
) |
References printVTK(), and readSmfFile().
void printVTK | ( | std::ostream & | vtuFile, | |
std::vector< double > & | vertexVariables, | |||
int & | numVariablesPerVtx, | |||
std::vector< int > & | connectivity, | |||
int & | numNodesPerElem, | |||
std::vector< std::string > & | variableNames | |||
) |
Referenced by main().
void readSmfFile | ( | std::istream & | smfFile, | |
std::vector< double > & | vertexVariables, | |||
int & | numVariablesPerVtx, | |||
std::vector< int > & | connectivity, | |||
int & | numNodesPerElem, | |||
std::vector< std::string > & | variableNames | |||
) |
Referenced by main().