package com.sogouchat.os;
import com.sogouchat.SogouChatApp;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
public class MsgSrvReceiver extends BroadcastReceiver {
// SogouChatApp mApp;
// public MsgSrvReceiver(SogouChatApp app){
// mApp = app;
// }
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();
int castType = bundle.getInt("CastType");
// mApp.handleSrvMsg(castType);
}
}