472,984 Members | 2,645 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,984 software developers and data experts.

Smart Pointer help

Here's a non intrusive reference counting smart pointer class I'm
working on; I keep getting a "22 C:\Dev-Cpp\SmrtPtr.hpp ISO C++ forbids
declaration of `SmrtPtrDB' with no type" error.

Code:

SmrtPtr.hpp

#pragma once

template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
{
DataBase.add();
for(;;)
{
if(isInvalid())
delete this;
}
}
SmrtPtr(const SmrtPtr<T>& rhs):ptr(rhs.obj){DataBase.add()}
~SmrtPtr(){delete ptr; DataBase.sub()}
T& operator*(){return *ptr;}
T* operator->(){return ptr;}
T** operator&(){return &ptr;}
private:
static SmrtPtrDB<TDataBase;
bool isInvalid()
{
for(;;)
if(!DataBase.status())
return true;
else return false;
}
T* ptr;
};
SmrtPtrDB.hpp

#pragma once
#include "SmrtPtr.hpp"

template<class T>
class SmrtPtrDB
{
public:
SmrtPtrDB():num(0){}
~SmrtPtrDB(){}
void add(){num++;}
void sub(){num--);
int status(){return num;}
private:
int num;
};

Could you help me out on this? I'm not even sure if I'm coding the
non-intrusive reference counting correctly. Thanks!!!!!

Jul 4 '06 #1
13 2031

Protoman wrote:
Here's a non intrusive reference counting smart pointer class I'm
working on; I keep getting a "22 C:\Dev-Cpp\SmrtPtr.hpp ISO C++ forbids
declaration of `SmrtPtrDB' with no type" error.

Code:

SmrtPtr.hpp

#pragma once

template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
{
DataBase.add();
for(;;)
{
if(isInvalid())
delete this;
}
}
SmrtPtr(const SmrtPtr<T>& rhs):ptr(rhs.obj){DataBase.add()}
~SmrtPtr(){delete ptr; DataBase.sub()}
T& operator*(){return *ptr;}
T* operator->(){return ptr;}
T** operator&(){return &ptr;}
private:
static SmrtPtrDB<TDataBase;
bool isInvalid()
{
for(;;)
if(!DataBase.status())
return true;
else return false;
}
T* ptr;
};
SmrtPtrDB.hpp

#pragma once
#include "SmrtPtr.hpp"

template<class T>
class SmrtPtrDB
{
public:
SmrtPtrDB():num(0){}
~SmrtPtrDB(){}
void add(){num++;}
void sub(){num--);
int status(){return num;}
private:
int num;
};

Could you help me out on this? I'm not even sure if I'm coding the
non-intrusive reference counting correctly. Thanks!!!!!
You use the name 'SmrtPtrDB' in file 'SmrtPtr.hpp' before any
declaration.

HTH

Jul 4 '06 #2
TB
Protoman skrev:
Here's a non intrusive reference counting smart pointer class I'm
working on; I keep getting a "22 C:\Dev-Cpp\SmrtPtr.hpp ISO C++ forbids
declaration of `SmrtPtrDB' with no type" error.

Code:
<snip>
>
SmrtPtrDB.hpp

#pragma once
#include "SmrtPtr.hpp"

template<class T>
class SmrtPtrDB
{
public:
SmrtPtrDB():num(0){}
~SmrtPtrDB(){}
void add(){num++;}
void sub(){num--);
void sub() { num--; }

--
TB @ SWEDEN
Jul 4 '06 #3
Protoman wrote:
template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
{
DataBase.add();
for(;;)
{
if(isInvalid())
delete this;
}
}
SmrtPtr(const SmrtPtr<T>& rhs):ptr(rhs.obj){DataBase.add()}
~SmrtPtr(){delete ptr; DataBase.sub()}
T& operator*(){return *ptr;}
T* operator->(){return ptr;}
T** operator&(){return &ptr;}
private:
static SmrtPtrDB<TDataBase;
bool isInvalid()
{
for(;;)
if(!DataBase.status())
return true;
else return false;
}
T* ptr;
};
Is there a particular reason that you do not use whitespace?

I corrected several minor typos. Your error message arises since you use
SmrtPtrDB before defining it. Put both classes in the same file:

template<class T>
class SmrtPtrDB{
public:

SmrtPtrDB () :num (0) {}

~SmrtPtrDB () {}

void add() { num++; }

void sub() { num--; }

int status() { return num; }

private:

int num;

};

template<class T>
class SmrtPtr {
public:

explicit SmrtPtr ( T* obj )
: ptr ( obj )
{
DataBase.add() ;
for (;;) {
if ( isInvalid() ) {
delete this;
}
}
/*
What is this loop supposed to accomplish? Why would it terminate?
*/
}

SmrtPtr ( const SmrtPtr<T>& rhs)
:ptr (rhs.obj)
{
DataBase.add();
}

~SmrtPtr() {
delete ptr;
DataBase.sub();
}

T& operator*() { return *ptr; }

T* operator->() { return ptr; }

T** operator&() { return &ptr; }

private:

static SmrtPtrDB<TDataBase;
/*
static? Why do you want to have one counter per type. One would expect a
counter per object.
*/
bool isInvalid()
{
for (;;) {
if (!DataBase.status() ) {
return true;
} else {
return false;
}
}
/*
This loop will never loop more than once.
*/
}

T* ptr;

};
What is this smart-pointer class supposed to accomplish?

Best

Kai-Uwe Bux
Jul 4 '06 #4

Protoman wrote:
Here's a non intrusive reference counting smart pointer class I'm
working on; I keep getting a "22 C:\Dev-Cpp\SmrtPtr.hpp ISO C++ forbids
declaration of `SmrtPtrDB' with no type" error.

Code:

SmrtPtr.hpp

#pragma once
non-standard pragma.
template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
reasonable so far although most smart-pointers have an implicit
constructor from the pointer type. Allows you to do this:

SmrtPtr< T getT()
{
return new T( params );
}
{
DataBase.add();
for(;;) // never ending loop, there is no "break"
{
if(isInvalid())
delete this;
}
delete this can be used only on classes created on the heap (i.e. with
new). Most smart pointers are created on the stack. Self-deletion would
be undefined. Note that this line will not cause loop termination.
}
SmrtPtr(const SmrtPtr<T>& rhs):ptr(rhs.obj){DataBase.add()}
~SmrtPtr(){delete ptr; DataBase.sub()}
T& operator*(){return *ptr;}
T* operator->(){return ptr;}
These two should possibly be const functions. Not that they will return
pointers to const. (If you want that you use SmrtPtr< const T >) but
because it allows you to use these on temporaries.
T** operator&(){return &ptr;}
very unusual to overload this.
private:
static SmrtPtrDB<TDataBase;
There will be a DataBase for each type T, not for each object being
pointed to.
bool isInvalid()
another non-const function that probably should be const.
{
for(;;)
this loop at least will end beacuse you return in the middle.
if(!DataBase.status())
return true;
else return false;
}
If you are going to test a boolean condition then return the result
directly, thus:

return !Database.status();
T* ptr;
};
SmrtPtrDB.hpp

#pragma once
#include "SmrtPtr.hpp"

template<class T>
class SmrtPtrDB
{
public:
SmrtPtrDB():num(0){}
~SmrtPtrDB(){}
void add(){num++;}
void sub(){num--);
int status(){return num;}
private:
int num;
};
Could you help me out on this? I'm not even sure if I'm coding the
non-intrusive reference counting correctly. Thanks!!!!!
But you're reference counting the wrong thing. If you're not actually
going to use tr1::shared_ptr / boost::shared_ptr or Loki then at least
look up the source for boost or Loki to see how it's done. If their
code in places looks rather complex, that is because writing a good
non-intrusive smart-pointer is not as trivial as it first seems.
(Actually some of the complexity in boost comes from sharing code with
other types of smart-pointer. Much of the complexity also comes from
custom-deleters, automatic type-conversion and portability across
libraries).

Jul 4 '06 #5

Earl Purple wrote:
Protoman wrote:
Here's a non intrusive reference counting smart pointer class I'm
working on; I keep getting a "22 C:\Dev-Cpp\SmrtPtr.hpp ISO C++ forbids
declaration of `SmrtPtrDB' with no type" error.

Code:

SmrtPtr.hpp

#pragma once

non-standard pragma.
template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)

reasonable so far although most smart-pointers have an implicit
constructor from the pointer type. Allows you to do this:

SmrtPtr< T getT()
{
return new T( params );
}
{
DataBase.add();
for(;;) // never ending loop, there is no "break"
{
if(isInvalid())

delete this;
}

delete this can be used only on classes created on the heap (i.e. with
new). Most smart pointers are created on the stack. Self-deletion would
be undefined. Note that this line will not cause loop termination.
}
SmrtPtr(const SmrtPtr<T>& rhs):ptr(rhs.obj){DataBase.add()}
~SmrtPtr(){delete ptr; DataBase.sub()}
T& operator*(){return *ptr;}
T* operator->(){return ptr;}

These two should possibly be const functions. Not that they will return
pointers to const. (If you want that you use SmrtPtr< const T >) but
because it allows you to use these on temporaries.
T** operator&(){return &ptr;}
very unusual to overload this.
private:
static SmrtPtrDB<TDataBase;

There will be a DataBase for each type T, not for each object being
pointed to.
bool isInvalid()

another non-const function that probably should be const.
{
for(;;)

this loop at least will end beacuse you return in the middle.
if(!DataBase.status())
return true;
else return false;
}

If you are going to test a boolean condition then return the result
directly, thus:

return !Database.status();
T* ptr;
};
SmrtPtrDB.hpp

#pragma once
#include "SmrtPtr.hpp"

template<class T>
class SmrtPtrDB
{
public:
SmrtPtrDB():num(0){}
~SmrtPtrDB(){}
void add(){num++;}
void sub(){num--);
int status(){return num;}
private:
int num;
};
Could you help me out on this? I'm not even sure if I'm coding the
non-intrusive reference counting correctly. Thanks!!!!!

But you're reference counting the wrong thing. If you're not actually
going to use tr1::shared_ptr / boost::shared_ptr or Loki then at least
look up the source for boost or Loki to see how it's done. If their
code in places looks rather complex, that is because writing a good
non-intrusive smart-pointer is not as trivial as it first seems.
(Actually some of the complexity in boost comes from sharing code with
other types of smart-pointer. Much of the complexity also comes from
custom-deleters, automatic type-conversion and portability across
libraries).
OK, now I'm getting errors like:

4 C:\Dev-Cpp\9.cpp expected nested-name-specifier before "namespace"
6 C:\Dev-Cpp\SmrtPtrDB.hpp class `SmrtPtrDB' does not have any field
named `num'
8 C:\Dev-Cpp\SmrtPtrDB.hpp `num' undeclared (first use this function)

Here's the code:

SmrtPtr.hpp

#pragma once
#include "SmrtPtrDB.hpp"

template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
{
DataBase.add();
for(;;)
{
if(isInvalid())
{
this->~SmrtPtr();
break;
}
}
}
SmrtPtr(const SmrtPtr<T>& rhs):ptr(rhs.obj){DataBase.add()}
~SmrtPtr(){delete ptr; DataBase.sub()}
T& operator*()const{return *ptr;}
T* operator->()const{return ptr;}
T** operator&()const{return &ptr;}
private:
static SmrtPtrDB DataBase;
bool isInvalid()const
{
for(;;)
return!DataBase.status();
}
T* ptr;
};

SmrtPtrDB.hpp

#pragma once

class SmrtPtrDB
{
public:
SmrtPtrDB():num(0){}
~SmrtPtrDB(){}
void add(){num++;}
void sub(){num--);
int status(){return num;}
private:
int num;
};

9.cpp //main

#include <iostream>
#include <cstdlib>
#include "SmrtPtr.hpp"
using namespace std;

int main()
{
SmrtPtr<intptr(new int);
SmrtPtr<intptr2(ptr);
delete ptr2;
system("PAUSE");
return EXIT_SUCCESS;
}

I have no idea what's the problem now. Thanks!!!!

Jul 4 '06 #6
Protoman wrote:
Earl Purple wrote:
>>Protoman wrote:
>>>Here's a non intrusive reference counting smart pointer class I'm
working on; I keep getting a "22 C:\Dev-Cpp\SmrtPtr.hpp ISO C++ forbids
declaration of `SmrtPtrDB' with no type" error.
>
I have no idea what's the problem now. Thanks!!!!
You use non-standard pragmas, omit whitespace and don't fix the typos
identified in previous responses?

--
Ian Collins.
Jul 4 '06 #7

Protoman wrote:
template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
{
DataBase.add();
for(;;)
{
if(isInvalid())
{
this->~SmrtPtr();
break;
}
}
}
You should only explicitly call a destructor when you have constructed
with placement new. Why should your smart-pointer have been constructed
this way?

You haven't really fixed your problem.

Just look at boost and loki to see how to write smart-pointers. And
then only write your own if you really need something that boost and
loki don't already support.

Jul 5 '06 #8

Earl Purple wrote:
Protoman wrote:
template<class T>
class SmrtPtr
{
public:
explicit SmrtPtr(T* obj):ptr(obj)
{
DataBase.add();
for(;;)
{
if(isInvalid())
{
this->~SmrtPtr();
break;
}
}
}

You should only explicitly call a destructor when you have constructed
with placement new. Why should your smart-pointer have been constructed
this way?

You haven't really fixed your problem.

Just look at boost and loki to see how to write smart-pointers. And
then only write your own if you really need something that boost and
loki don't already support.
I'm writing this for the learning experience, not b/c I need it.

Jul 5 '06 #9
Protoman posted:

>Just look at boost and loki to see how to write smart-pointers. And
then only write your own if you really need something that boost and
loki don't already support.

I'm writing this for the learning experience, not b/c I need it.

With that attitude you'll become a very proficient programmer indeed.
--

Frederick Gotham
Jul 5 '06 #10

Frederick Gotham wrote:
Protoman posted:

Just look at boost and loki to see how to write smart-pointers. And
then only write your own if you really need something that boost and
loki don't already support.
I'm writing this for the learning experience, not b/c I need it.


With that attitude you'll become a very proficient programmer indeed.
--

Frederick Gotham
OK, where can I GET boost and loki?

Jul 5 '06 #11
* Protoman:
>
OK, where can I GET boost and loki?
Protoman, I give you... WIKIPEDIA!

<url: http://en.wikipedia.org/wiki/Boost_library>
<url: http://en.wikipedia.org/wiki/Loki_%28C%2B%2B%29>

Of course there's also YAHOO, GOOGLE, ALLTHEWEB, LYCOS, ALTAVISTA, etc.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 5 '06 #12
Protoman posted:

OK, where can I GET boost and loki?

Boost:

http://sourceforge.net/projects/boost
Loki:
http://sourceforge.net/projects/loki-lib/

--

Frederick Gotham
Jul 5 '06 #13
Alf P. Steinbach schrieb:
* Protoman:
>>
OK, where can I GET boost and loki?

Protoman, I give you... WIKIPEDIA!

<url: http://en.wikipedia.org/wiki/Boost_library>
<url: http://en.wikipedia.org/wiki/Loki_%28C%2B%2B%29>

Of course there's also YAHOO, GOOGLE, ALLTHEWEB, LYCOS, ALTAVISTA, etc.
Google? Why should he know that you can find things with google? He uses
google for news. Thats the only purpose, isn't it? :-)

--
Thomas
Jul 5 '06 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Johnny Hansen | last post by:
Hello, I've been trying to implement smart pointers in C++ (combined with a reference counter) because I want to do some memory management. My code is based on the gamedev enginuity articles,...
24
by: Christopher Benson-Manica | last post by:
Is there anything wrong with my attempt (below) at implementing something resembling a smart pointer? template < class T > class SmartPointer { private: T *t; public:
27
by: Susan Baker | last post by:
Hi, I'm just reading about smart pointers.. I have some existing C code that I would like to provide wrapper classes for. Specifically, I would like to provide wrappers for two stucts defined...
5
by: Neal Coombes | last post by:
Posted to comp.lang.c++.moderated with little response. Hoping for better from the unmoderated groups: -------- Original Message -------- Subject: Return appropriately by value, (smart)...
8
by: Axter | last post by:
I normally use a program call Doxygen to document my source code.(http://www.stack.nl/~dimitri/doxygen) This method works great for small and medium size projects, and you can get good...
92
by: Jim Langston | last post by:
Someone made the statement in a newsgroup that most C++ programmers use smart pointers. His actual phrase was "most of us" but I really don't think that most C++ programmers use smart pointers,...
33
by: Ney André de Mello Zunino | last post by:
Hello. I have written a simple reference-counting smart pointer class template called RefCountPtr<T>. It works in conjunction with another class, ReferenceCountable, which is responsible for the...
4
by: Deep | last post by:
I'm in doubt about what is smart pointer. so, please give me simple description about smart pointer and an example of that. I'm just novice in c++. regards, John.
50
by: Juha Nieminen | last post by:
I asked a long time ago in this group how to make a smart pointer which works with incomplete types. I got this answer (only relevant parts included): ...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
4
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.