blob: 9377012c1f073ca754c0696d6533b33a74cc3f12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/***************************************************************************
fwglobal.h - description
-------------------
begin : mar feb 17 2004
copyright : (C) 2003 by gulmini luciano
email : gulmini.luciano@student.unife.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef FWGLOBAL_H
#define FWGLOBAL_H
enum SplitType{ HORIZONTAL,VERTICAL,NONE };
int proxInt(double d);
#endif
|