Scope
StorageController.cpp
1 #include "stdafx.h"
2 #include "StorageController_p.h"
3 
4 namespace scope {
5 
7  : BaseController( new StorageController::Impl(_iqueue, _parameters) ) {
8 }
9 
10 StorageController::~StorageController() {
11 }
12 
14  return static_cast<StorageController::Impl*>(BaseController<1>::Pimpl());
15 }
16 
17 
18 }
The master parameters class.
Definition: Scope.h:204
StorageController(StorageController &other)
disable copy
Impl * Pimpl() const
This is the include file for standard system include files, or project specific include files that ar...
StorageController::Impl *const Pimpl() const
The StorageController controls the conversion of multi images to TIFF and the storage of those...
The implementation class of the StorageController.
A synchronized, thread-safe queue was modeled after ringbuffer example from boost?! and/or a Herb Sutter column?!
Definition: DaqController.h:7
Base class for all controllers.