Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Modeled structuregenerated code


Code Block
languagecpp
titleExample Code Generated
typedef struct NestedStructsStruct
{
	union
	{
		char Full;
		struct
		{
			byte dd;
			byte mm;
			int yyyy;
		} Date;
		struct
		{
			char B0 : 1;
			char B1 : 2;
		};
	} Example;
} NestedStructs;


...