1 // This file is part of Golly.
2 // See docs/License.html for the copyright notice.
3 
4 #ifndef _WXINFO_H_
5 #define _WXINFO_H_
6 
7 // Routines for displaying comments in a pattern file:
8 
9 // Open a modeless window and display the comments in given file.
10 void ShowInfo(const wxString& filepath);
11 
12 // Return a pointer to the info window.
13 wxFrame* GetInfoFrame();
14 
15 #endif
16