示例#1
0
 /// <summary>
 /// Get all the platform info as a vector
 /// </summary>
 /// <returns>The vector of Platfom info</returns>
 public static Util.VectorOfOclPlatformInfo GetPlatformInfo()
 {
     Util.VectorOfOclPlatformInfo result = new Util.VectorOfOclPlatformInfo();
     OclInvoke.oclGetPlatformsInfo(result);
     return(result);
 }
示例#2
0
 /// <summary>
 /// Push multiple values from the other vector into this vector
 /// </summary>
 /// <param name="other">The other vector, from which the values will be pushed to the current vector</param>
 public void Push(VectorOfOclPlatformInfo other)
 {
     VectorOfOclPlatformInfoPushVector(_ptr, other);
 }
示例#3
0
 public DebuggerProxy(VectorOfOclPlatformInfo v)
 {
     _v = v;
 }