mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
801112de1a
Needed so that we can include it as a logger in loggers.cc without adding a dependency on nix This also requires moving names.hh to libutil to prevent a circular dependency between libmain and libexpr
13 lines
189 B
C++
13 lines
189 B
C++
#pragma once
|
|
|
|
#include "logging.hh"
|
|
|
|
namespace nix {
|
|
|
|
Logger* makeProgressBar(bool printBuildLogs = false);
|
|
|
|
void startProgressBar(bool printBuildLogs = false);
|
|
|
|
void stopProgressBar();
|
|
|
|
}
|