1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
3  * http://www.gnu.org/licenses/gpl-3.0.html
4  */
5 
6 #ifndef FORMATTERSETTINGS_H
7 #define FORMATTERSETTINGS_H
8 
9 #include <astyle.h>
10 
11 class FormatterSettings
12 {
13 	public:
14 		FormatterSettings();
15 		virtual ~FormatterSettings();
16 
17 		void ApplyTo(astyle::ASFormatter& formatter);
18 };
19 
20 #endif // FORMATTERSETTINGS_H
21