OPath.cs 404 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Data.ObjectSpaces.Query.OPath
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Data.ObjectSpaces.Schema;
  11. namespace System.Data.ObjectSpaces.Query
  12. {
  13. [MonoTODO()]
  14. public class OPath
  15. {
  16. [MonoTODO()]
  17. public static ObjectExpression Parse(ObjectQuery oq,ObjectSchema objectSchema)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. }
  23. #endif