replaced mrw::Shared by std::shared_ptr; refs #28

This commit is contained in:
Marc Wäckerlin
2014-04-03 11:21:18 +00:00
parent 512d32e8ba
commit cc62637188
8 changed files with 30 additions and 41 deletions

View File

@@ -10,6 +10,7 @@
// #include <openssl.hxx>
#include <string>
#include <mrw/checkcxx11.hxx>
#include <memory>
#include <cctype>
#include <stdexcept>

View File

@@ -14,6 +14,7 @@
#include <mrw/args.hxx>
#include <string>
#include <mrw/checkcxx11.hxx>
#include <memory>
#include <cctype>
#include <stdexcept>

View File

@@ -18,7 +18,7 @@ class TextualCycle: public suisseid::StatusCycle {
public:
// just pass the card to parent
TextualCycle(mrw::Shared<suisseid::Card> card):
TextualCycle(std::shared_ptr<suisseid::Card> card):
StatusCycle(card) {
}