TranslationJob.cs 331 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace I2.Loc
  3. {
  4. public class TranslationJob : IDisposable
  5. {
  6. public virtual TranslationJob.eJobState GetState()
  7. {
  8. return this.mJobState;
  9. }
  10. public virtual void Dispose()
  11. {
  12. }
  13. public TranslationJob.eJobState mJobState;
  14. public enum eJobState
  15. {
  16. Running,
  17. Succeeded,
  18. Failed
  19. }
  20. }
  21. }