1234567891011121314151617 |
- //
- // Created by robin on 10/1/17.
- //
-
- #include "LibNfcOperation.h"
-
- LibNfcOperation::LibNfcOperation(QSharedPointer<LibNfcBusiness>& libNfc,
- std::function<void(QSharedPointer<LibNfcBusiness>)> operation)
- : m_pLibNfc(libNfc)
- , m_operation(operation)
- {
- }
-
- void LibNfcOperation::run()
- {
- m_operation(m_pLibNfc);
- }
|