1 /*
2 
3                           Firewall Builder
4 
5                  Copyright (C) 2009 NetCitadel, LLC
6 
7   Author:  Vadim Kurland     vadim@fwbuilder.org
8 
9   $Id$
10 
11   This program is free software which we release under the GNU General Public
12   License. You may redistribute and/or modify this program under the terms
13   of that license as published by the Free Software Foundation; either
14   version 2 of the License, or (at your option) any later version.
15 
16   This program is distributed in the hope that it will be useful,
17   but WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   GNU General Public License for more details.
20 
21   To get a copy of the GNU General Public License, write to the Free Software
22   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 
24 */
25 
26 #ifndef PIX_INTERFACE_PROPERTIES_HH
27 #define PIX_INTERFACE_PROPERTIES_HH
28 
29 #include "interfaceProperties.h"
30 
31 
32 class pixInterfaces : public interfaceProperties
33 {
34 
35 public:
pixInterfaces()36     pixInterfaces() : interfaceProperties() {}
37     virtual bool parseVlan(const QString&, QString*, int*);
38 };
39 
40 #endif
41