summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/core/otemplatebase.h
blob: 41cc934be4f1f7be673fd82a3414f9d2e8bd7e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef OPIE_TEMPLATE_BASE_H
#define OPIE_TEMPLATE_BASE_H

#include "opimrecord.h"

template <class T = OPimRecord>
class OTemplateBase {
public:
    OTemplateBase() {
    };
    virtual ~OTemplateBase() {
    }
    virtual T find( int uid ) = 0;

};


#endif