mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
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.
15 lines
165 B
C++
15 lines
165 B
C++
#pragma once
|
|
|
|
#include "logging.hh"
|
|
|
|
namespace nix {
|
|
|
|
class StartProgressBar
|
|
{
|
|
Logger * prev = 0;
|
|
public:
|
|
StartProgressBar();
|
|
~StartProgressBar();
|
|
};
|
|
|
|
}
|