blob: 0f18a3655cefde9f5aefaf5232c9e8ff23337922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef RECORDINGS_H
#define RECORDINGS_H
#include <p2pvr.h>
#include <string>
#include "dbClient.h"
class Recordings : public DatabaseClient, public P2PVR::Recordings {
public:
int NewRecording(const P2PVR::RecordingPtr & rec, const Ice::Current &);
void DeleteRecording(int recordingId, const Ice::Current &);
P2PVR::RecordingList GetRecordings(const Ice::Current &);
};
#endif
|