14 lines
178 B
C++
14 lines
178 B
C++
// -*- C++ -*-
|
|
|
|
#include <boost/smart_ptr/shared_ptr.hpp>
|
|
|
|
class TestClass {
|
|
public:
|
|
typedef boost::shared_ptr< TestClass > Ptr;
|
|
public:
|
|
};
|
|
|
|
|
|
TestClass::Ptr someFct();
|
|
|