예제 #1
0
파일: Program.cs 프로젝트: misiek/foo
        static void Main(string[] args)
        {
            //IntPtr location = new IntPtr(1);
            //IntPtr satellite = new IntPtr(1);
            //GpsDevice gps = new GpsDevice(satellite, location);
            GpsDevice gps = new GpsDevice();
            gps.Open();

            Listener l = new Listener();
            l.SubscribeLocation(gps);
            l.SubscribeSatellites(gps);
        }
예제 #2
0
파일: Program.cs 프로젝트: mitice/foo
        static void Main(string[] args)
        {
            //IntPtr location = new IntPtr(1);
            //IntPtr satellite = new IntPtr(1);
            //GpsDevice gps = new GpsDevice(satellite, location);
            GpsDevice gps = new GpsDevice();

            gps.Open();


            Listener l = new Listener();

            l.SubscribeLocation(gps);
            l.SubscribeSatellites(gps);
        }
예제 #3
0
파일: Program.cs 프로젝트: mitice/foo
 private void satellite(GpsDevice gps)
 {
     System.Console.WriteLine("SATELLITE");
 }
예제 #4
0
파일: Program.cs 프로젝트: mitice/foo
 private void location(GpsDevice gps)
 {
     System.Console.WriteLine("LOCATION");
 }
예제 #5
0
파일: Program.cs 프로젝트: mitice/foo
 public void SubscribeSatellites(GpsDevice gps)
 {
     gps.satellitesChanged += new GpsDevice.SatellitesChangedEventHandler(satellite);
 }
예제 #6
0
파일: Program.cs 프로젝트: mitice/foo
 public void SubscribeLocation(GpsDevice gps)
 {
     gps.locationChanged += new GpsDevice.LocationChangedEventHandler(location);
 }
예제 #7
0
파일: Program.cs 프로젝트: misiek/foo
 private void satellite(GpsDevice gps)
 {
     System.Console.WriteLine("SATELLITE");
 }
예제 #8
0
파일: Program.cs 프로젝트: misiek/foo
 private void location(GpsDevice gps)
 {
     System.Console.WriteLine("LOCATION");
 }
예제 #9
0
파일: Program.cs 프로젝트: misiek/foo
 public void SubscribeSatellites(GpsDevice gps)
 {
     gps.satellitesChanged += new GpsDevice.SatellitesChangedEventHandler(satellite);
 }
예제 #10
0
파일: Program.cs 프로젝트: misiek/foo
 public void SubscribeLocation(GpsDevice gps)
 {
     gps.locationChanged += new GpsDevice.LocationChangedEventHandler(location);
 }