Revision: | 1.1.1.1 (vendor branch) |
Committed: | Thu Dec 1 16:28:48 2011 UTC (13 years, 5 months ago) by dhidas |
Content type: | text/plain |
Branch: | dhidas, MAIN |
CVS Tags: | START, HEAD |
Changes since 1.1: | +0 -0 lines |
Log Message: | osu copy modified |
# | Content |
---|---|
1 | #ifndef GUARD_DHRunTracker_h |
2 | #define GUARD_DHRunTracker_h |
3 | |
4 | #include <vector> |
5 | #include <set> |
6 | #include <map> |
7 | #include <algorithm> |
8 | |
9 | class DHRunTracker |
10 | { |
11 | public: |
12 | DHRunTracker (); |
13 | ~DHRunTracker (); |
14 | |
15 | bool IsDuplicate(unsigned int, unsigned long); |
16 | |
17 | private: |
18 | std::set< std::pair<unsigned int, unsigned long> > fSet; |
19 | }; |
20 | |
21 | |
22 | #endif |