package com.spacemangames.biomatcher.view;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.RelativeLayout;
import com.googlecode.androidannotations.annotations.EViewGroup;
import com.spacemangames.biomatcher.R;
@EViewGroup(R.layout.legend_compound)
public class GraphLegendCompound extends RelativeLayout {
public GraphLegendCompound(Context context, AttributeSet attrs) {
super(context, attrs);
}
}