Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=26afbd4d8160a1723d12fa09145628e22fcd8dcc
commit 26afbd4d8160a1723d12fa09145628e22fcd8dcc Author: James Buren <[email protected]> Date: Sat Aug 18 17:41:29 2012 -0500 import dos classes diff --git a/DosPartition.cc b/DosPartition.cc new file mode 100644 index 0000000..48f08fd --- /dev/null +++ b/DosPartition.cc @@ -0,0 +1,6 @@ +#include "DosPartition.hh" + +void DosPartition::setActive(bool active) +{ + _dos_active = active; +} diff --git a/DosPartition.hh b/DosPartition.hh new file mode 100644 index 0000000..3d181a9 --- /dev/null +++ b/DosPartition.hh @@ -0,0 +1,15 @@ +#pragma once + +#include "Partition.hh" + +class DosPartition : Partition +{ + +public: + virtual void setActive(bool active); + +protected: + unsigned char _dos_type; + bool _dos_active; + +}; _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
