~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to csharp-new/liblas_swig_test/TestSpatialReference.cs

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
using System.Linq;
 
4
using System.Text;
 
5
 
 
6
using Liblas;
 
7
using System.Diagnostics;
 
8
 
 
9
namespace swig_test
 
10
{
 
11
   static internal class TestSpatialReference
 
12
   {
 
13
      static public void Test(SpatialReference srs)
 
14
      {
 
15
         string wkt = srs.GetWKT(SpatialReference.WKTModeFlag.eCompoundOK, false);
 
16
 
 
17
         // BUG: need to have one to test
 
18
         Debug.Assert(wkt == "");
 
19
 
 
20
         return;
 
21
      }
 
22
   }
 
23
}