C Struct Kinds |
Use “c struct” to match all C Struct kinds
A struct type may be an ordinary struct, that is, not a member of a class.
A struct may be unnamed. The following example shows an array of 10 elements containing a structure consisting of two int members
A struct may be a member of a class. In this case the struct may be private, protected, or public.
A struct may be an abstract struct, which is a struct with at least one pure virtual member function.
An unresolved struct is a struct that is known to exist but who’s definition is unknown. An unknown struct is an unresolved struct, but is also lacking any formal declaration.
Scientific Toolworks, Inc. http://www.scitools.com |