]> git.donarmstrong.com Git - lilypond.git/blobdiff - lib/include/source-file.hh
release: 0.1.43
[lilypond.git] / lib / include / source-file.hh
index 9b084a32806144c4ea7d9799be08117cfbf48e78..d5346be5f78d09d1a185ccce28ceea0f00e9395c 100644 (file)
@@ -16,24 +16,24 @@ class istream;
 class Source_file
 {
 public:
-    /** Ugh! filename gets changed! The path to the opened file may
-       change, since it might be searched in multiple directories.  */
-    Source_file(String filename_str_r );
-    virtual ~Source_file();
-
-    char const* ch_C() const;
-    virtual String error_str(char const* pos_ch_c_l ) const;
-    istream * istream_l();
-    bool in_b(char const* pos_ch_c_l ) const;
-    int length_i() const;
-    virtual int line_i(char const* pos_ch_c_l ) const;
-    String name_str() const;
-    String file_line_no_str(char const* ch_c_l ) const;
+  /** Ugh! filename gets changed! The path to the opened file may
+    change, since it might be searched in multiple directories.  */
+  Source_file (String filename_str_r );
+  virtual ~Source_file ();
+
+  char const* ch_C () const;
+  virtual String error_str (char const* pos_ch_c_l ) const;
+  istream * istream_l ();
+  bool in_b (char const* pos_ch_c_l ) const;
+  int length_i () const;
+  virtual int line_i (char const* pos_ch_c_l ) const;
+  String name_str () const;
+  String file_line_no_str (char const* ch_c_l ) const;
 
 private:
-    String name_str_;
-    istream* istream_p_;
-    File_storage * storage_p_;
+  String name_str_;
+  istream* istream_p_;
+  File_storage * storage_p_;
 };
 
 #endif // SOURCE_FILE_HH //