~ubuntu-branches/ubuntu/jaunty/imms/jaunty

« back to all changes in this revision

Viewing changes to immscore/immsdb.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Veber
  • Date: 2005-04-13 23:43:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050413234311-kzr68z9l7z5mv551
Tags: 2.0.3-2
Build depend on xmms-dev (>= 1.2.10+cvs20050209)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __IMMSDB_H
 
2
#define __IMMSDB_H
 
3
 
 
4
#include "basicdb.h"
 
5
#include "playlist.h"
 
6
#include "correlate.h"
 
7
 
 
8
#define SCHEMA_VERSION 9
 
9
 
 
10
class ImmsDb : virtual public BasicDb,
 
11
                       public PlaylistDb,
 
12
                       public CorrelationDb
 
13
{
 
14
public:
 
15
    ImmsDb();
 
16
protected:
 
17
    virtual void sql_create_tables();
 
18
    virtual void sql_schema_upgrade(int from = 0);
 
19
};
 
20
 
 
21
#endif