OSDN Git Service

Automatically align underspecified tasks boundaries on project boundaries when possible.
[tjqt4port/tj2qt4.git] / taskjuggler / CustomAttribute.h
1 /*
2  * CustomAttribute.h - TaskJuggler
3  *
4  * Copyright (c) 2001, 2002, 2003, 2004 by Chris Schlaeger <cs@kde.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of version 2 of the GNU General Public License as
8  * published by the Free Software Foundation.
9  *
10  * $Id$
11  */
12 #ifndef _CustomAttribute_h_
13 #define _CustomAttribute_h_
14
15 #include "taskjuggler.h"
16
17 /*
18  * @short This is the virtual base class for all user defined attribute types.
19  * @author Chris Schlaeger <cs@kde.org>
20  */
21 class CustomAttribute
22 {
23 public:
24     CustomAttribute() { }
25     virtual ~CustomAttribute() { }
26
27     virtual CustomAttributeType getType() const { return CAT_Undefined; }
28 } ;
29
30 #endif
31