Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OsmAuthActivity.java « editor « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b214f40fc6e6f1f5f3fe31e08bbd5a0821728626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mapswithme.maps.editor;

import android.support.v4.app.Fragment;

import com.mapswithme.maps.base.BaseMwmFragmentActivity;

public class OsmAuthActivity extends BaseMwmFragmentActivity
{
  @Override
  protected Class<? extends Fragment> getFragmentClass()
  {
    return OsmAuthFragment.class;
  }
}