summaryrefslogtreecommitdiff
path: root/core/ContextBase.h
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2013-07-20 14:16:32 -0700
committerSridhar Nelloru <nellos@codeaurora.org>2013-08-09 11:44:27 -0700
commit3535edcfb0def6f298eea21f51fc91103004c984 (patch)
tree00784aefaf9ecbd9cfbf2e086bc477381e05b5f3 /core/ContextBase.h
parent11adbb371f795fc676949a6fee5fe5e918443845 (diff)
downloadgps-3535edcfb0def6f298eea21f51fc91103004c984.tar.gz
corresponding to izat_core and LBSAdapter changes.
Removed makefile dependency to AndrodRuntime; Renamed library to be loaded from liblocation to libizat_core; Made some class private access to protected for the needs of inheritance; piggy bagged some optimizations. Change-Id: Id7e3127baa1833cbad7739f50808941c733b87f2 (cherry picked from commit c039ceaec84b25573d710b31831c9b06d4f3d1c6)
Diffstat (limited to 'core/ContextBase.h')
-rw-r--r--core/ContextBase.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/ContextBase.h b/core/ContextBase.h
index b04def3..6ad9cad 100644
--- a/core/ContextBase.h
+++ b/core/ContextBase.h
@@ -45,12 +45,11 @@ protected:
const MsgTask* mMsgTask;
LocApiBase* mLocApi;
-protected:
+public:
ContextBase(const MsgTask* msgTask,
LOC_API_ADAPTER_EVENT_MASK_T exMask);
inline virtual ~ContextBase() { delete mLocApi; }
-public:
static void* getIzatLibHandle();
inline const MsgTask* getMsgTask() { return mMsgTask; }
inline LocApiBase* getLocApi() { return mLocApi; }