Move Ctors/Dtors to top of class as is normal

This commit is contained in:
Luke De Mouy
2016-01-18 16:30:03 -07:00
parent 28eab2e2ef
commit 71ef5fb49d

View File

@@ -35,6 +35,11 @@ class Firewall
{
public:
///#section: ctors dtors
Firewall();
~Firewall();
///#endsection
///#section: port commands
/**
* @description Returns a structure containing information about the port
@@ -113,11 +118,6 @@ public:
void RestoreDefaults();
///#endsection
///#section: ctors dtors
Firewall();
~Firewall();
///#endsection
private:
void readServicesFile();
QStringList* portStrings;