Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=c50e4120f645ab41a6309e7b969bcca0d07b59c8
commit c50e4120f645ab41a6309e7b969bcca0d07b59c8 Author: James Buren <[email protected]> Date: Sat Aug 18 18:10:38 2012 -0500 add constructors for DosPartition diff --git a/DosPartition.cc b/DosPartition.cc index 48f08fd..f15796a 100644 --- a/DosPartition.cc +++ b/DosPartition.cc @@ -1,5 +1,16 @@ #include "DosPartition.hh" +DosPartition::DosPartition() +{ + _dos_type = 0; + + _dos_active = false; +} + +DosPartition::~DosPartition() +{ +} + void DosPartition::setActive(bool active) { _dos_active = active; diff --git a/DosPartition.hh b/DosPartition.hh index 3d181a9..29d193b 100644 --- a/DosPartition.hh +++ b/DosPartition.hh @@ -6,6 +6,8 @@ class DosPartition : Partition { public: + DosPartition(); + ~DosPartition(); virtual void setActive(bool active); protected: _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
