journal.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KCAL_JOURNAL_H
00022 #define KCAL_JOURNAL_H
00023
00024 #include "incidence.h"
00025
00026 namespace KCal {
00027
00031 class Journal : public Incidence
00032 {
00033 public:
00034 typedef ListBase<Journal> List;
00035
00036 Journal();
00037 ~Journal();
00038 bool accept( Visitor &v ) { return v.visit(this); }
00039 bool operator==( const Journal& ) const;
00040
00041 QCString type() const { return "Journal"; }
00042
00046 Journal *clone();
00047
00048 private:
00049 class Private;
00050 Private *d;
00051 };
00052
00053 }
00054
00055 #endif
This file is part of the documentation for libkcal Library Version 3.2.2.