diff options
Diffstat (limited to 'Source/cmCableData.h')
-rw-r--r-- | Source/cmCableData.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmCableData.h b/Source/cmCableData.h index f3788d7..7dd5cc7 100644 --- a/Source/cmCableData.h +++ b/Source/cmCableData.h @@ -41,7 +41,7 @@ public: std::ostream& GetOutputStream() { return m_OutputFile; } - void OpenOutputFile(const std::string&); + void InitializeOutputFile(); void CloseOutputFile(); void WriteConfigurationHeader(); @@ -86,10 +86,15 @@ private: Indentation m_Indentation; /** + * The name of the output file opened as m_OutputFile. + */ + std::string m_OutputFileName; + + /** * The output file to which the configuration is written. */ std::ofstream m_OutputFile; - + /** * The stack of namespaces. */ |