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 ASTYLEPREDEFINEDSTYLES_H
7 #define ASTYLEPREDEFINEDSTYLES_H
8 
9 enum AStylePredefinedStyle
10 {
11   aspsAllman = 0,
12   aspsJava,
13   aspsKr,
14   aspsStroustrup,
15   aspsWhitesmith,
16   aspsVTK,
17   aspsRatliff,
18   aspsGnu,
19   aspsLinux,
20   aspsHorstmann,
21   asps1TBS,
22   aspsGoogle,
23   aspsMozilla,
24   aspsPico,
25   aspsLisp,
26   aspsCustom
27 };
28 
29 #endif // ASTYLEPREDEFINEDSTYLES_H
30