summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-src/poppler/ProfileData.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/poppler/poppler-src/poppler/ProfileData.h')
-rw-r--r--Build/source/libs/poppler/poppler-src/poppler/ProfileData.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/Build/source/libs/poppler/poppler-src/poppler/ProfileData.h b/Build/source/libs/poppler/poppler-src/poppler/ProfileData.h
deleted file mode 100644
index 664a60b0180..00000000000
--- a/Build/source/libs/poppler/poppler-src/poppler/ProfileData.h
+++ /dev/null
@@ -1,36 +0,0 @@
-//========================================================================
-//
-// ProfileData.h
-//
-// Copyright 2005 Jonathan Blandford <jrb@gnome.org>
-// Copyright 2018 Adam Reichold <adam.reichold@t-online.de>
-//
-//========================================================================
-
-#ifndef PROFILE_DATA_H
-#define PROFILE_DATA_H
-
-#ifdef USE_GCC_PRAGMAS
-#pragma interface
-#endif
-
-//------------------------------------------------------------------------
-// ProfileData
-//------------------------------------------------------------------------
-
-class ProfileData {
-public:
- void addElement (double elapsed);
-
- int getCount () const { return count; }
- double getTotal () const { return total; }
- double getMin () const { return max; }
- double getMax () const { return max; }
-private:
- int count = 0; // size of <elems> array
- double total = 0.0; // number of elements in array
- double min = 0.0; // reference count
- double max = 0.0; // reference count
-};
-
-#endif