CycloBranch
cCandidateSet.h
Go to the documentation of this file.
1
7#ifndef _CCANDIDATESET_H
8#define _CCANDIDATESET_H
9
10#include <QMutex>
11
12#include "core/cCandidate.h"
13
14
18class cCandidateSet : public QMutex {
19
20 unordered_set<cCandidate, hash_cCandidate> candidates;
21
22public:
23
28
29
34 int size();
35
36
41 unordered_set<cCandidate, hash_cCandidate>& getSet();
42
43};
44
45
46#endif
47
The representation of a peptide sequence candidate.
The class representing a set of peptide sequence candidates.
Definition: cCandidateSet.h:18
int size()
Get the size of the set.
Definition: cCandidateSet.cpp:9
cCandidateSet()
The constructor.
Definition: cCandidateSet.cpp:4
unordered_set< cCandidate, hash_cCandidate > & getSet()
Access to the set of candidates.
Definition: cCandidateSet.cpp:14