Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:09:54

0001 #ifndef ATOOLS_Org_SettingsWriter_H
0002 #define ATOOLS_Org_SettingsWriter_H
0003 
0004 #include <string>
0005 
0006 namespace ATOOLS {
0007 
0008   class Settings;
0009 
0010   class Settings_Writer {
0011 
0012   public:
0013 
0014     void WriteSettings(Settings&);
0015 
0016   private:
0017 
0018     std::string EncodeForMarkdown(const std::string &) const;
0019 
0020   };
0021 
0022 }
0023 
0024 #endif