~zeitgeist/zeitgeist-fts/trunk

« back to all changes in this revision

Viewing changes to src/zgfts-engine.h

  • Committer: Mikkel Kamstrup Erlandsen
  • Date: 2012-01-10 22:37:20 UTC
  • Revision ID: mikkel.kamstrup@gmail.com-20120110223720-0wvqvr53xlyu7n4l
Add some boost shared_ptr magic

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
   * The idea is to implement and expose only the absolutely minimally
37
37
   * needed functionality.
38
38
   */
39
 
  class Database : Object {
 
39
  class Engine : Object {
40
40
 
41
41
    std::vector<Event> get_events (std::vector<int> event_ids);
42
42
 
43
43
 
44
44
  };
45
45
 
 
46
  typedef boost::shared_ptr<Engine> DatabasePtr;
 
47
 
46
48
} /* namespace ZeitgeistFTS */
47
49
 
48
50
#endif /* _ZGFTS_DB_H_ */