mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
464 B
24 lines
464 B
7 years ago
|
#ifndef WIDGETLOCKREGISTRY_H
|
||
|
#define WIDGETLOCKREGISTRY_H
|
||
|
|
||
|
#include <vector>
|
||
|
#include <widgetlock.h>
|
||
|
|
||
|
class widgetlockregistry {
|
||
|
std::vector<widgetlock*> locks;
|
||
|
|
||
|
public:
|
||
|
widgetlockregistry() : locks() {}
|
||
|
virtual ~widgetlockregistry() {
|
||
|
while(!locks.empty()) {
|
||
|
delete locks.back();
|
||
|
locks.pop_back();
|
||
|
}
|
||
|
}
|
||
|
void add(widgetlock* lock) {
|
||
|
locks.push_back(lock);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif // WIDGETLOCKREGISTRY_H
|