summaryrefslogtreecommitdiff
path: root/milestone.h
blob: 332fbe44c3701b4c071cc418a9a5a91015ed8b88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*-*- Mode: C; c-basic-offset: 8 -*-*/

#ifndef foomilestonehfoo
#define foomilestonehfoo

typedef struct Milestone Milestone;

#include "name.h"

typedef enum MilestoneState {
        MILESTONE_DEAD,
        MILESTONE_ACTIVE
} MilestoneState;

struct Milestone {
        Meta meta;

        MilestoneState state;
};

extern const NameVTable milestone_vtable;

#endif