aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/filter/people-custom-simpl.hxx
blob: c3df23885f9ab1144294209080f0ef761df991f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file      : examples/cxx/hybrid/filter/people-custom-simpl.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// 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