/usr/include/compiz/animation/persistent.h is in compiz-dev 1:0.9.12.2+16.04.20160415-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #ifndef ANIMATION_PERSISTENT_H
#define ANIMATION_PERSISTENT_H
#include "animation.h"
class PersistentData
{
};
typedef std::map<std::string, PersistentData *> PersistentDataMap;
class MultiPersistentData :
public PersistentData
{
public:
MultiPersistentData () : num (0) {}
int num;
};
#endif
|