Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > Forward declarations

Reply
Thread Tools

Forward declarations

 
 
Marcin Kalicinski
Guest
Posts: n/a
 
      05-11-2004
Hi All,

In some headers meant to work with both C and C++ the following is often
found:

typedef struct tagMyStruct { /*some members*/ } MyStruct;

Can I forward-declare MyStruct somehow?

Or more generally, can I forward declare a typedef or an enum? Also, is
there any reason why there should be difference between forward declarations
of classes and structs (i.e. why I need to explicitly write keyword 'struct'
or 'class' when forward declaring). In some cases I don't immediately know
what to write, because, for example, the type definition in original header
file is generated with some macro, such as this:

STDINTERFACE(IBlahBlah, IBaseBlahBlah) {
/* Members */
}

Now I need to search for the definition of STDINTERFACE to see how it works.
Even if I find it, it still may silently change in some future version of
the header file, and cause my compilation to fail. Wouldn't allowing a
generic form of forward declaration, without introducing a new keyword:

typename IBlahBlah;

be beneficial to C++?

best regards,
Marcin




 
Reply With Quote
 
 
 
 
Leor Zolman
Guest
Posts: n/a
 
      05-11-2004
On Tue, 11 May 2004 16:35:12 +0200, "Marcin Kalicinski"
<> wrote:

>Hi All,
>
>In some headers meant to work with both C and C++ the following is often
>found:
>
>typedef struct tagMyStruct { /*some members*/ } MyStruct;
>
>Can I forward-declare MyStruct somehow?


Sure, you can say:

typedef struct tagMyStruct MyStruct;

and complete the definition later on, if necessary.

>
>Or more generally, can I forward declare a typedef or an enum?


typedefs, I don't think so. Under Comeau, in C mode, if I did something
like this:
typedef b;
it took it to mean as if I'd said:
typedef int b;
(and emitted a suitable warning).

With enums, Comeau tells me that forward-declaring them is nonstandard. So
it may be supported, but isn't portable.

> Also, is
>there any reason why there should be difference between forward declarations
>of classes and structs (i.e. why I need to explicitly write keyword 'struct'
>or 'class' when forward declaring).


Well, you began this post by saying "In some headers meant to work with
both C and C++", so there's an obvious reason to prefer struct right there.

> In some cases I don't immediately know
>what to write, because, for example, the type definition in original header
>file is generated with some macro, such as this:
>
>STDINTERFACE(IBlahBlah, IBaseBlahBlah) {
> /* Members */
>}
>
>Now I need to search for the definition of STDINTERFACE to see how it works.
>Even if I find it, it still may silently change in some future version of
>the header file, and cause my compilation to fail. Wouldn't allowing a
>generic form of forward declaration, without introducing a new keyword:
>
>typename IBlahBlah;
>
>be beneficial to C++?


I would hope that any such header file gives you a documented way to /use/
the facilities it generates, so that such use is immune to future
implementation changes. If you think you're using something that's going to
morph out from under you in the next release, you'll have to get creative
with, perhaps, some preprocessor (or typedef) hackery of your own. Don't
hold your breath waiting for changes in the language to support you here.
-leor

>
>best regards,
>Marcin
>
>
>


--
Leor Zolman --- BD Software --- www.bdsoft.com
On-Site Training in C/C++, Java, Perl and Unix
C++ users: download BD Software's free STL Error Message Decryptor at:
www.bdsoft.com/tools/stlfilt.html
 
Reply With Quote
 
 
 
 
Jake Montgomery
Guest
Posts: n/a
 
      05-13-2004
Marcin Kalicinski wrote:
> Hi All,
>
> In some headers meant to work with both C and C++ the following is often
> found:
>
> typedef struct tagMyStruct { /*some members*/ } MyStruct;
>
> Can I forward-declare MyStruct somehow?


Yes:
struct tagMyStruct;
should work.

>
> Or more generally, can I forward declare a typedef or an enum? Also, is



The lack of a forward declaration of enum is my pet peeve also.
VC6.0,7.0 & 7.1 all support it as a language extension, and it was only
when I began writing cross platform code that I discovered that it was
not legal in c/c++. (It can help immensely in avoiding header spaghetti)
I realize there are issues regarding knowing the underlying type of
an enum, but if these compilers can handle it, then it is clearly
possible. Nonetheless, I am not holding my breath.

[Snip]
> best regards,
> Marcin


>


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
forward declarations and namespaces? Steven T. Hatton C++ 6 05-05-2004 01:26 PM
NEED HELP with forward declarations Alan Lee C++ 5 04-05-2004 01:03 PM
Forward declarations and namespaces whithers C++ 4 01-16-2004 07:12 AM
Some problems with forward declarations mjm C++ 3 08-13-2003 12:48 AM
namespaces and forward declarations matthew polder C++ 1 07-24-2003 04:06 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57