~linaro-graphics-wg/compiz-plugins-main/oneiric-gles2

« back to all changes in this revision

Viewing changes to animation/include/animation/persistent.h

  • Committer: Sam Spilsbury
  • Date: 2011-09-20 07:43:55 UTC
  • Revision ID: sam.spilsbury@canonical.com-20110920074355-puzdutejjwsu3ta2
Sync - Remove Plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef ANIMATION_PERSISTENT_H
2
 
#define ANIMATION_PERSISTENT_H
3
 
 
4
 
#include "animation.h"
5
 
class PersistentData
6
 
{
7
 
};
8
 
 
9
 
typedef std::map<std::string, PersistentData *> PersistentDataMap;
10
 
 
11
 
class MultiPersistentData :
12
 
public PersistentData
13
 
{
14
 
public:
15
 
    MultiPersistentData () : num (0) {}
16
 
    int num;
17
 
};
18
 
#endif