Commit 0b3144c7 authored by Yann Garcia's avatar Yann Garcia
Browse files

Add RnisAPI typing

parent a0ce1899
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@ module AtsMec_TestControl {
  import from AtsMec_LocationAPI_TestCases all;
  import from AtsMec_UEidentityAPI_TestCases all;
  import from AtsMec_UEinformation_TestCases all;
  import from AtsMec_RnisAPI_TestCases all;
  
  control {
    
+6 −1
Original line number Diff line number Diff line
@@ -3,6 +3,11 @@ module LocationAPI_TypesAndValues {
  // LibCommon
  import from LibCommon_BasicTypesAndValues all;

  /**
   * @desc
   * @member seconds The seconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC
   * @member nanoSeconds The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC
   */
  type record TimeStamp {
    UInt32 seconds,
    UInt32 nanoSeconds
+6568 −0

File added.

Preview size limit exceeded, changes collapsed.

+6 −0
Original line number Diff line number Diff line
module RnisAPI_TypesAndValues {

  // LibMec/RnisAPI
  import from module RnisAPI_TypesAndValues all;
  
} // End of module RnisAPI_TypesAndValues
Loading