forked from lix-project/lix
41633f9f73
This also gets rid of --log-type, since the nested log type isn't useful in a multi-threaded situation, and nobody cares about the "pretty" log type.
16 lines
165 B
C++
16 lines
165 B
C++
#pragma once
|
|
|
|
#include "logging.hh"
|
|
|
|
namespace nix {
|
|
|
|
class StartProgressBar
|
|
{
|
|
Logger * prev = 0;
|
|
public:
|
|
StartProgressBar();
|
|
~StartProgressBar();
|
|
};
|
|
|
|
}
|