aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/filter/people-custom-simpl.hxx
blob: 03e4892786f33e1a87c59dbb0681332360d6d322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// file      : examples/cxx/hybrid/filter/people-custom-simpl.hxx
// copyright : not copyrighted - public domain

#ifndef PEOPLE_CUSTOM_SIMPL_HXX
#define PEOPLE_CUSTOM_SIMPL_HXX

// Customized people serializer implementation.
//
class people_simpl: public people_base_simpl
{
public:
  void
  gender_filter (gender);

  virtual bool
  person_next ();

private:
  gender gender_;
};

#endif // PEOPLE_CUSTOM_SIMPL_HXX