[all] Switch from boost::shared_ptr -> std::shared_ptr.
Shared_ptr has moved into the standard library since these tools were first written.
This commit is contained in:
+2
-2
@@ -1,9 +1,9 @@
|
||||
#ifndef BASE_APPLICATION_H
|
||||
#define BASE_APPLICATION_H
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <iostream>
|
||||
#include <list>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
#include <stdint.h>
|
||||
@@ -13,7 +13,7 @@
|
||||
namespace base {
|
||||
class command {
|
||||
public:
|
||||
typedef boost::shared_ptr<command> ptr;
|
||||
typedef std::shared_ptr<command> ptr;
|
||||
|
||||
command(std::string const &name);
|
||||
virtual ~command() {}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef BASE_PROGRESS_MONITOR_H
|
||||
#define BASE_PROGRESS_MONITOR_H
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user