aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/parser/minimal/people-pimpl-mixin.hxx
blob: eb2c331e6cbe4682b451a4d45394325504d9c031 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// file      : examples/cxx/parser/people/people-pimpl-mixin.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain

#ifndef PEOPLE_PIMPL_HXX
#define PEOPLE_PIMPL_HXX

#include "gender.hxx"
#include "people-pskel.hxx"

struct gender_pimpl: virtual gender_pskel, xml_schema::string_pimpl
{
  virtual gender
  post_gender ()
  {
    char* s = post_string ();

    if (!_error ())
    {
      gender g = strcmp (s, "male") ? female : male;

      delete[] s;
      return g;
    }
    else
      return male; // This value will never be used.
  }
};

struct person_pimpl: virtual person_pskel
{
  virtual void
  first_name (char* n)
  {
    printf ("first: %s\n", n);
    delete[] n;
  }

  virtual void
  last_name (char* n)
  {
    printf ("last: %s\n", n);
    delete[] n;
  }

  virtual void
  gender (::gender g)
  {
    switch (g)
    {
    case male:
      {
        printf ("gender: male\n");
        break;
      }
    case female:
      {
        printf ("gender: female\n");
        break;
      }
    }
  }

  virtual void
  age (unsigned short a)
  {
    printf ("age: %hu\n", a);
  }
};

struct people_pimpl: virtual people_pskel
{
  virtual void
  person ()
  {
    // Add an extra newline after each person record.
    //
    printf ("\n");
  }
};

#endif // PEOPLE_PIMPL_HXX