summaryrefslogtreecommitdiff
path: root/core/pim/todo/todoedit.h
blob: 02800caac35960e25de78c3d482979a8eeadbfdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef OPIE_TODO_EDIT_H
#define OPIE_TODO_EDIT_H

#include <opie/otodo.h>

namespace Todo {
    class Edit {
    public:
        Edit();
        virtual ~Edit();

        ToDoEvent newEvent( const OTodo& ) = 0;
        ToDoEvent editEvent( const OTodo& ) = 0;
    };
};

#endif