473,397 Members | 2,077 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

ISO C++ forbids declaration of 'Rectangle' with no type

Hello,
I'm trying to compile a programme which compiles fine under Linux; I'm
trying it with MinGW G++ 3.4.2:
Component.h:

#ifndef COMPONENT_H_
#define COMPONENT_H_

#include "../basics/Rectangle.h"

class Component {
private:
Rectangle *bounds;
// Unique identifier
long id;

// more declarations

};

#endif
Rectangle.h (relative path is as included above):

#ifndef RECTANGLE_H_
#define RECTANGLE_H_

#include "Point.h"

class Rectangle
{
// some declarations
};

#endif
Point.h (same directory as Rectangle.h)

#ifndef POINT_H_
#define POINT_H_

class Point {
// some declarations
};

#endif
Now, in Windows, I always get the following compilation errors (where
line 25 in Component.h matches the line "Rectangle *bounds;" shown
above):

In file included from visdgetsbase.h:13,
from main.cpp:14:
widgets/Component.h:25: error: ISO C++ forbids declaration of
`Rectangle' with n
o type
widgets/Component.h:25: error: expected `;' before '*' token
widgets/Component.h:41: error: ISO C++ forbids declaration of
`Rectangle' with n
o type
widgets/Component.h:41: error: expected `;' before '*' token
widgets/Component.h:43: error: variable or field `setBounds' declared
void
widgets/Component.h:43: error: expected `;' before '(' token

So, why isn't Rectangle recognized as a type?

I tried removing the relative path in #include, but that only results
in an additional error message saying that the file Rectangle.h wasn't
found at all. I also made sure I don't have any other file called
Rectangle.h on my entire hard disk, so quite obviously, with the
relative paths given in the #include directive, the correct file
should've been found, then why isn't the type Rectangle?

Thanks in advance,
Florian
Jan 24 '07 #1
7 9409
On Jan 24, 1:35 pm, "Florian Haag" <florianh...@yahoo.dewrote:
Hello,
I'm trying to compile a programme which compiles fine under Linux; I'm
trying it with MinGW G++ 3.4.2:

Component.h:

#ifndef COMPONENT_H_
#define COMPONENT_H_

#include "../basics/Rectangle.h"

class Component {
private:
Rectangle *bounds;
// Unique identifier
long id;

// more declarations

};
#endif
In file included from visdgetsbase.h:13,
from main.cpp:14:
widgets/Component.h:25: error: ISO C++ forbids declaration of
`Rectangle' with no type
Seems to me like the problem might be on line 25 in Component.h (or a
bit above), but the part from Component.h you pasted does not contain
the 25th line so I can't help you. Make sure that the last statement
above line 25 has a ; at the end.

--
Erik Wikström

Jan 24 '07 #2
Erik Wikström wrote:
Seems to me like the problem might be on line 25 in Component.h (or a
bit above), but the part from Component.h you pasted does not contain
the 25th line so I can't help you. Make sure that the last statement
above line 25 has a ; at the end.
Hi,
sorry if I explained this in a confusing way, actually, the line

Rectangle *bounds;

_is_ line 25, already shown in my code in the original posting (I
removed some comments when copying the code here).

Regards, thanks in advance,
Florian
Jan 24 '07 #3
Florian Haag wrote:
Erik Wikström wrote:
>Seems to me like the problem might be on line 25 in Component.h (or a
bit above), but the part from Component.h you pasted does not contain
the 25th line so I can't help you. Make sure that the last statement
above line 25 has a ; at the end.

Hi,
sorry if I explained this in a confusing way, actually, the line

Rectangle *bounds;

_is_ line 25, already shown in my code in the original posting (I
removed some comments when copying the code here).
Well, in removing that code, you probably removed the error. Post those
lines. (This is covered in the FAQ:

http://www.parashift.com/c++-faq-lit...t.html#faq-5.8
Best

Kai-Uwe Bux
Jan 24 '07 #4
Kai-Uwe Bux wrote:
Well, in removing that code, you probably removed the error. Post
those lines. (This is covered in the FAQ:

http://www.parashift.com/c++-faq-lit...t.html#faq-5.8
Sorry, this sent me to the right direction; there was a naming conflict
with a Rectangle-function from wingdi.h, which of course only occurred
in Windows.
I'm sorry for not having followed those rules, I still am not used that
in C++, there can be such an influence accross several files, unlike in
some other languages.

Regards,
Florian
Jan 24 '07 #5
Florian Haag wrote:
Kai-Uwe Bux wrote:
>Well, in removing that code, you probably removed the error. Post
those lines. (This is covered in the FAQ:

http://www.parashift.com/c++-faq-lit...t.html#faq-5.8

Sorry, this sent me to the right direction; there was a naming
conflict with a Rectangle-function from wingdi.h, which of course
only occurred in Windows.
I'm sorry for not having followed those rules, I still am not used
that in C++, there can be such an influence accross several files,
unlike in some other languages.
So C++ provides namespaces to isolate different components into their own
space.
Bo Persson
Jan 24 '07 #6


On Jan 24, 6:24 am, "Florian Haag" <florianh...@yahoo.dewrote:
Kai-Uwe Bux wrote:
Well, in removing that code, you probably removed the error. Post
those lines. (This is covered in the FAQ:
http://www.parashift.com/c++-faq-lit...l#faq-5.8Sorry, this sent me to the right direction; there was a naming conflict
with a Rectangle-function from wingdi.h, which of course only occurred
in Windows.
I'm sorry for not having followed those rules, I still am not used that
in C++, there can be such an influence accross several files, unlike in
some other languages.
Other languages usually solve this "problem" with namespaces. It is
rare that a language allows the same symbol to be used to mean
different things.

Jan 24 '07 #7
Noah Roberts wrote:
I'm sorry for not having followed those rules, I still am not used
that in C++, there can be such an influence accross several files,
unlike in some other languages.

Other languages usually solve this "problem" with namespaces. It is
rare that a language allows the same symbol to be used to mean
different things.
Right, well - e.g. in Delphi, if you include another source file A, by
default, you just include the declarations from that very source file
A, not those of other source files B and C referenced by A.

Regards,
Florian
Jan 24 '07 #8

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

Similar topics

2
by: Henrik S. Hansen | last post by:
I'm new to C++, and cannot figure out why this won't compile: std::map<std::string, int> tst; tst = 1; int main() { /*...*/ } It gives me: error: ISO C++ forbids declaration of `tst' with...
5
by: j0mbolar | last post by:
operator = (const char *string) { if(m_string) { free(m_string); m_string = 0; } if(string) { m_string = strdup(string); } }
4
by: Juhan Voolaid | last post by:
Hi I need help here. When i compile my program, i get this error: $ make g++ -c -Wall inf2_functions.cpp -o inf2_functions.o inf2_classes.h:6: error: ISO C++ forbids declaration of ‘vector’...
3
by: gamehack | last post by:
Hi all, Here's the error which I'm getting when trying to compile some code: boxmanager.h:16: error: ISO C++ forbids declaration of 'vector' with no type boxmanager.h:16: error: expected...
1
by: eric | last post by:
hello i'm trying to implement some functionality whereby an algorithm in a base template class relies on a function pointer supplied by a derived template class. the types are only specified by...
6
by: mkborregaard | last post by:
Hi, I am getting an error message from MinGW that I just cannot figure what causes. The error message is: "Line 16: ISO C++ forbids declaration of 'AreaMap' with no type" My code is: #ifndef...
8
by: aneuryzma | last post by:
Hello, I'm merging an OpenCV app with an Ogre3d app. I'm on a mac, I'm using xCode. When I add #include "openCVApp.h" I got the following error:
6
by: samsneelam | last post by:
Hi.. This is samuel, while doing a program, i encountered this problem.. Let me give you clarity regarding my prob.. I am having two files .. one is mpcplib.h it contains the follwing...
10
by: tvnaidu | last post by:
I am using Three pthread functions below, I got ISO error, then I declared int variable called val123, then I assigned, but still I am getting error, any idea?. also I included pthread.h. compiling...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.