diff options
Diffstat (limited to 'include/binder/IMemory.h')
-rw-r--r-- | include/binder/IMemory.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/binder/IMemory.h b/include/binder/IMemory.h index 182792c..ae042cb 100644 --- a/include/binder/IMemory.h +++ b/include/binder/IMemory.h @@ -59,6 +59,10 @@ public: const Parcel& data, Parcel* reply, uint32_t flags = 0); + + BnMemoryHeap(); +protected: + virtual ~BnMemoryHeap(); }; // ---------------------------------------------------------------------------- @@ -85,6 +89,10 @@ public: const Parcel& data, Parcel* reply, uint32_t flags = 0); + + BnMemory(); +protected: + virtual ~BnMemory(); }; // ---------------------------------------------------------------------------- |