-1
votes
2answers
85 views

Why shared_ptr<T> expects copy/move constructor in T?

I have the following code: #include <memory> using namespace std; template<typename U> class A; template<typename U> class B { private: shared_ptr<const ...
0
votes
1answer
51 views

Compilation error when creating template & boost::shared_ptr based generic factory

I am using c++98 unfortunately. template <class bT> class Creator { public: virtual bT* create() = 0; }; template <class bT> struct CreatorPtr { typedef boost::shared_ptr< ...
1
vote
3answers
41 views

GCC shared_ptr Template Error

The following function #include <memory> template<typename T> std::shared_ptr<typename T> Tail(const std::shared_ptr<typename T>& cont, size_t n) { const auto ...
0
votes
0answers
25 views

template parameter of shared_ptr in dll exported class

I made some class which owns shared_ptr member like below. #include <memory> template<typename T> class a { T m; }; class b; // forward declare class __declspec(dllexport) test { ...
3
votes
1answer
137 views

weak_ptr of a base class, while the shared_ptr is of a derived class?

I have a structure that manages objects that derive from a base class Entity, but does not control their lifetimes. I want this structure to be given weak pointers like weak_ptr<Entity> so that ...
0
votes
2answers
44 views

accessing templated member function of an object that is a member of a struct

So I have a structure which hold many members including a boost shared pointer to a PCLVisualizer object. The PCLVisualizer class is a templated class with a member function updatePointcloud. I am ...
2
votes
1answer
122 views

C++ template : A template to call variables by name

This question is a continuation of an earlier one found at: How to template'ize variable NAMES, not types? Let's say one has the following code: struct VAR_TYPE{ public: bool is_fixed; ...
0
votes
2answers
98 views

C++ Templated Subject Observer Inheritance/Cast Conflict

I am using the example http://www.codeproject.com/Articles/3267/Implementing-a-Subject-Observer-pattern-with-templ to implement a templated subject/observer pattern. However, I am getting annoying ...
0
votes
2answers
147 views

C++ - “Unspecialised class template” error with shared_ptr

I have a class Room and it holds a vector of shared_ptrs to Option objects like so: private: vector<shared_ptr<Option> > options; But for some reason when I build, I get the following ...
6
votes
1answer
300 views

Generic way to test if a type is a (smart) pointer

In my code, I need to test if a type given to a template is a pointer -- be it smart or not. According to boost, there is no reliable and generic way to do that (see here) -- or is there? So far, I ...
1
vote
2answers
120 views

typedef a shared pointer that contains a templated class

Suppose I have some template class forward declared and I want to typedef a shared pointer to it. How would I do this? template<typename T> class Arg; typedef std::tr1::shared_ptr<Arg> ...
3
votes
1answer
93 views

C++ instantiation of function template with shared_ptrs [duplicate]

Possible Duplicate: C++ passing a derived class shared_ptr to a templated function The compiler has no problems with instantiation when we use pointers. template <typename T> struct ...
1
vote
3answers
284 views

Why is it that defining boost::shared_ptr of a templated behaves differently than boost::shared_ptr of a non templated class

I was trying to integrate the boost::share_ptr into a pair of templated classes that were originally derived from a boost::asio example I found. When I define a type within one class which is a ...
0
votes
2answers
160 views

generic shared_ptr as member of a class

I want to have a shared_ptr as a member of a class, but the type that the shared_ptr manages is different each time and is only known at run time. Is there any way to declare such a member and init it ...
0
votes
1answer
239 views

unresolved external symbol with template implementation on VS2010

i just built a template implementation of my boost network. here is my template class who is calling my network class : AbstractNetwork.hpp : #include "Network.hpp" template <typename T, ...
1
vote
2answers
177 views

Different templated class in a set using boost::shared_ptr

I have some design problems, I thought one of you might have some clue to help me. I tried to summarize my problem to this simple example : I have two different class DerivedOne and DerivedTwo which ...
3
votes
1answer
167 views

using shared_ptr<T> across libs with different CRTs

I am writing a library that includes an interface to return\receive shared_ptr objects. Everything seemed just dandy until I was reminded that an application using my library could have a different ...
0
votes
2answers
389 views

SWIG_SHARED_PTR macro with templated class

I'm using SWIG with boost shared pointers to create python extensions. My current issue is that the SWIG_SHARED_PTR macro seems to work differently with templated classes. I'll give two examples, ...
1
vote
2answers
718 views

C++ passing a derived class shared_ptr to a templated function

First something that should work, then something that doesn't. Why doesn't it is the question. I declare two classes: class Base { ... }; class Derived : public Base { ... }; I then have the ...
3
votes
6answers
282 views

Refactoring c++ template class based on template type

Given class Foo template <typename T> class Foo { public: ...other methods.. void bar() { ... m_impl.doSomething(); ... } void fun() { ... ...
2
votes
1answer
140 views

C++ Templates - How to use across multiple MTU's

class A : boost::noncopyable { int type; A(int type, enum VAR) : type(type) { afunc(VAR); } ~A() {} bool usable() { ... } } typedef boost::shared_ptr<A> A_ptr; ...
3
votes
1answer
1k views

Problem with iterators for std::list of boost::shared_ptr

I'm having a problem with the following code: #include <list> #include <boost/shared_ptr.hpp> #include "Protocol/IMessage.hpp" template <typename HeaderType> class Connection { ...
2
votes
4answers
2k views

shared_ptr with templates

If I want to create a smart pointer to struct I do that: struct A { int value; }; typedef boost::shared_ptr<A> A_Ptr; So, I can write the following: A_Ptr pA0(new A); pA0->value = ...