Blame testing/044_section.h

Packit Service 50c9f2
// objective: test the \(public|protected|private)section commands
Packit Service 50c9f2
// check: struct_s.xml
Packit Service 50c9f2
Packit Service 50c9f2
/** A struct */
Packit Service 50c9f2
struct S
Packit Service 50c9f2
{
Packit Service 50c9f2
  /** \publicsection */
Packit Service 50c9f2
Packit Service 50c9f2
  /** public field */
Packit Service 50c9f2
  int pub1;
Packit Service 50c9f2
  /** another public field */
Packit Service 50c9f2
  int pub2;
Packit Service 50c9f2
Packit Service 50c9f2
  /** \protectedsection */
Packit Service 50c9f2
Packit Service 50c9f2
  /** protected field */
Packit Service 50c9f2
  int pro1;
Packit Service 50c9f2
  /** another protected field */
Packit Service 50c9f2
  int pro2;
Packit Service 50c9f2
Packit Service 50c9f2
  /** \privatesection */
Packit Service 50c9f2
Packit Service 50c9f2
  /** private field */
Packit Service 50c9f2
  int pri1;
Packit Service 50c9f2
  /** another private field */
Packit Service 50c9f2
  int pri2;
Packit Service 50c9f2
};
Packit Service 50c9f2