blob: 8e5dbfd768c4750c3d348b91fd18272c661ce14c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// file : tests/cxx/parser/enumeration/gender.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
#ifndef GENDER_HXX
#define GENDER_HXX
enum gender
{
male,
female
};
#endif // GENDER_HXX
|