| 1 | #include "rar.hpp" |
| 2 | |
| 3 | CmdExtract::CmdExtract(CommandData *Cmd) |
| 4 | { |
| 5 | CmdExtract::Cmd=Cmd; |
| 6 | |
| 7 | *ArcName=0; |
| 8 | |
| 9 | *DestFileName=0; |
| 10 | |
| 11 | TotalFileCount=0; |
| 12 | Unp=new Unpack(&DataIO); |
| 13 | #ifdef RAR_SMP |
| 14 | Unp->SetThreads(Cmd->Threads); |
| 15 | #endif |
| 16 | } |
| 17 | |
| 18 | |
| 19 | CmdExtract::~CmdExtract() |
nothing calls this directly
no test coverage detected