/usr/include/poppler/ProfileData.h is in libpoppler-dev 0.18.4-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | //========================================================================
//
// ProfileData.h
//
// Copyright 2005 Jonathan Blandford <jrb@gnome.org>
//
//========================================================================
#ifndef PROFILE_DATA_H
#define PROFILE_DATA_H
#ifdef USE_GCC_PRAGMAS
#pragma interface
#endif
//------------------------------------------------------------------------
// ProfileData
//------------------------------------------------------------------------
class ProfileData {
public:
// Constructor.
ProfileData ();
// Destructor.
~ProfileData() {}
void addElement (double elapsed);
int getCount () { return count; }
double getTotal () { return total; }
double getMin () { return max; }
double getMax () { return max; }
private:
int count; // size of <elems> array
double total; // number of elements in array
double min; // reference count
double max; // reference count
};
#endif
|