Changeset 926

Show
Ignore:
Timestamp:
10/09/08 23:28:35 (3 months ago)
Author:
MartinVales
Message:
 
Location:
trunk/csharp/dotnetLibLAS
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/csharp/dotnetLibLAS/LASGuid.cs

    r918 r926  
    111111        /// </summary> 
    112112        /// <returns>the GUID opaque pointer</returns> 
    113         public LASGuidH GetPointer() 
     113        internal LASGuidH GetPointer() 
    114114        { 
    115115            return hguid; 
  • trunk/csharp/dotnetLibLAS/LASHeader.cs

    r918 r926  
    8484 
    8585        /// Versions of point record format. 
    86         enum PointFormat 
     86        public enum PointFormat 
    8787        { 
    8888            ///Point Data Format \e 0 
     
    9393 
    9494        /// Number of bytes of point record storage in particular format. 
    95         enum PointSize 
     95        public enum PointSize 
    9696        { 
    9797            ///Size of point record in data format \e 0 
     
    116116        /// </summary> 
    117117        /// <returns>opaque pointer to the LASHeaderH instance.</returns> 
    118         public LASHeaderH GetPointer() 
     118        internal LASHeaderH GetPointer() 
    119119        { 
    120120            return hHeader; 
  • trunk/csharp/dotnetLibLAS/LASPoint.cs

    r918 r926  
    183183        /// </summary> 
    184184        /// <returns>the opaque pointer to the LASPointH instance</returns> 
    185         public LASPointH GetPointer() 
     185        internal LASPointH GetPointer() 
    186186        { 
    187187            return hPoint; 
  • trunk/csharp/dotnetLibLAS/LASReader.cs

    r918 r926  
    9191 
    9292        /// <summary> 
     93        ///  
     94        /// </summary> 
     95        /// <returns></returns> 
     96        public string GetVersion() 
     97        { 
     98            return CAPI.LAS_GetVersion(); 
     99        } 
     100        
     101        /// <summary> 
    93102        /// get the current LASPoint. 
    94103        /// </summary>