File: progresscallback.cpp

package info (click to toggle)
libept 1.1%2Bnmu3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 4,676 kB
  • ctags: 803
  • sloc: cpp: 5,625; sh: 62; makefile: 17
file content (12 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#include <ept/progresscallback.h>

namespace ept {

   bool ProgressCallback::Pulse(pkgAcquire *Owner)
   {
      pkgAcquireStatus::Pulse(Owner);
      UpdatePulse(FetchedBytes, CurrentCPS, CurrentItems);
      return true;
   }

}