001/*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005
006package armyc2.c5isr.JavaLineArray;
007
008/**
009 * A class for channel points used by clsChannelUtility
010 */
011public class CChannelPoints2
012{
013    protected POINT2 m_Line1;
014    protected POINT2 m_Line2;
015    protected CChannelPoints2()
016    {
017        m_Line1=new POINT2();
018        m_Line2=new POINT2();
019    }
020    protected CChannelPoints2(CChannelPoints2 pts)
021    {
022        m_Line1=new POINT2(pts.m_Line1);
023        m_Line2=new POINT2(pts.m_Line2);
024    }
025}