Mercurial > hg > audiodb
comparison ReporterBase.h @ 508:23c47e118bc6
Better soap memory correctness.
Pass the struct soap down through audioDB::query into Reporter::report
methods.
We go through the audioDB constructor and do everything on the stack.
We'll eventually also need to add a pointer member within the audioDB
object, so that non-local transfers of control (particularly
audioDB::error) can still allocate soap-specific memory.
Then use soap_malloc() not new[] for memory allocation of
adbQueryResponse data structures.
author | mas01cr |
---|---|
date | Tue, 13 Jan 2009 21:37:14 +0000 |
parents | 342822c2d49a |
children |
comparison
equal
deleted
inserted
replaced
507:e7fd50483311 | 508:23c47e118bc6 |
---|---|
4 | 4 |
5 class ReporterBase { | 5 class ReporterBase { |
6 public: | 6 public: |
7 virtual ~ReporterBase(){}; | 7 virtual ~ReporterBase(){}; |
8 virtual void add_point(unsigned int trackID, unsigned int qpos, unsigned int spos, double dist) = 0; | 8 virtual void add_point(unsigned int trackID, unsigned int qpos, unsigned int spos, double dist) = 0; |
9 virtual void report(adb_t *,void *) = 0; | 9 virtual void report(adb_t *, struct soap *, void *) = 0; |
10 }; | 10 }; |
11 | 11 |
12 #endif | 12 #endif |