我有以下代码:
// interface.h
#ifndef INTERFACE_H
#define INTERFACE_H
#include <memory>
class IInterface {
public:
virtual ~IInterface() = 0;
virtual void doSomething() = 0;
};
inline IInterface::~IInterface() {}
typedef std::shared_ptr< IInterface > IIntPtr;
IIntPtr makeInterface();
#endif // INTERFACE_H
// impl.cpp
#include "interface.h"
class Interface : public IInterface { public:
Interface() {}
~Interface() {}
void doSomething() {} };
IIntPtr makeInterface() { return IIntPtr( new Interface() ); }
// main.cpp
#include "interface.h"
using namespace std;
int main()
{
auto p = makeInterface();
p->doSomething();
}
现在:如果我使用typedef std::shared_ptr< IInterface > IIntPtr;
一切都很好,但如果我使用typedef boost::shared_ptr< IInterface > IIntPtr;
我有一些编译器错误:
我正在使用msvc10,但代码必须使用msvc9.0编译,所以我必须使用Boos.SmartPtr
我错过了什么吗?
答案 0 :(得分:0)
#include <boost/shared_ptr.hpp>
。