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
|
#include "Fireworks/Core/interface/FWJobMetadataManager.h"
#include "Fireworks/Core/interface/FWJobMetadataUpdateRequest.h"
#include <memory>
FWJobMetadataManager::FWJobMetadataManager(void) : m_typeAndReps(nullptr) {}
FWJobMetadataManager::~FWJobMetadataManager() {}
/** Invoked when a given update request needs to happen. Will
emit the metadataChanged_ signal when done so that observers can
update accordingly.
Derived classes should implement the doUpdate() protected method
to actually modify the metadata according to the request.
Notice that this method is a consumer of request object and takes
ownership of the lifetime of the @a request objects.
*/
void FWJobMetadataManager::update(FWJobMetadataUpdateRequest* request) {
std::unique_ptr<FWJobMetadataUpdateRequest> ptr(request);
if (doUpdate(request))
metadataChanged_();
}
void FWJobMetadataManager::initReps(const FWTypeToRepresentations& iTypeAndReps) {
delete m_typeAndReps;
m_typeAndReps = new FWTypeToRepresentations(iTypeAndReps);
}
|