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

#include "opimrecord.h"

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

};


#endif