atlas  0.6
io.h
Go to the documentation of this file.
1 /*
2  This is io.h
3 
4  Copyright (C) 2004,2005 Fokko du Cloux
5  part of the Atlas of Lie Groups and Representations
6 
7  For copyright and license information see the LICENSE file
8 */
9 
10 #ifndef IO_H /* guard against multiple inclusions */
11 #define IO_H
12 
13 #include <iosfwd>
14 
15 /******** constants ********************************************************/
16 
17 namespace atlas {
18 
19 namespace io {
20 
21  extern const char* MESSAGE_DIR; // a modifyable pointer to const char
22 
23 }
24 
25 /******** function declarations ********************************************/
26 
27 namespace io {
28 
29  std::ostream& printFile(std::ostream& strm, const char* text_file_name);
30  std::ostream& printFile(std::ostream& strm,
31  const char* text_file_name, const char* dir_name);
32 
33 }
34 
35 }
36 
37 #endif
std::ostream & printFile(std::ostream &strm, const char *a)
Definition: io.cpp:36
const char * MESSAGE_DIR
Definition: io.cpp:31
Definition: Atlas.h:38