summaryrefslogtreecommitdiff
path: root/core/pim/todo/todoedit.h
blob: 4e89e93e677f17468b5ae04bf9b56b81f9db0ec0 (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 <opie2/opimtodo.h>

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

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

#endif