Skip to content
Snippets Groups Projects
Select Git revision
  • 6a21d9830d473b51ec776292ebdc929ff83b8ee9
  • master default protected
2 results

microstrip.pro

Blame
  • CreateFile.h 569 B
    // Gmsh - Copyright (C) 1997-2016 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <gmsh@onelab.info>.
    
    #ifndef _CREATE_FILE_H_
    #define _CREATE_FILE_H_
    
    #include <string>
    
    int GetFileFormatFromExtension(const std::string &fileName);
    int GuessFileFormatFromFileName(const std::string &fileName);
    std::string GetDefaultFileName(int format);
    void CreateOutputFile(const std::string &fileName, int format,
                          bool status=true, bool redraw=true);
    
    #endif