blob: 079ad95b720261abca906adab7460538dcd8c7fd [file] [log] [blame]
Erik37960c02010-06-22 13:40:18 -07001package com.android.calendar;
2
3import android.app.Activity;
4
5public abstract class AbstractCalendarActivity extends Activity {
6 protected AsyncQueryService mService;
7
8 public synchronized AsyncQueryService getAsyncQueryService() {
9 if (mService == null) {
10 mService = new AsyncQueryService(this);
11 }
12 return mService;
13 }
14}