/filesystems-objc/AccessibilityFS/Source/AccessibilityFS.h

http://macfuse.googlecode.com/ · C Header · 35 lines · 7 code · 3 blank · 25 comment · 0 complexity · b5c5d751532947fa1e83eb973fe3c9dd MD5 · raw file

  1. //
  2. // AccessibilityFS.h
  3. // AccessibilityFS
  4. //
  5. // Created by Dave MacLachlan <dmaclach@> on 12/14/07.
  6. //
  7. // ================================================================
  8. // Copyright (C) 2008 Google Inc.
  9. //
  10. // Licensed under the Apache License, Version 2.0 (the "License");
  11. // you may not use this file except in compliance with the License.
  12. // You may obtain a copy of the License at
  13. //
  14. // http://www.apache.org/licenses/LICENSE-2.0
  15. //
  16. // Unless required by applicable law or agreed to in writing, software
  17. // distributed under the License is distributed on an "AS IS" BASIS,
  18. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  19. // See the License for the specific language governing permissions and
  20. // limitations under the License.
  21. // ================================================================
  22. #import <Foundation/Foundation.h>
  23. // A MacFUSE file system for probing around through various applications'
  24. // UIs exposed through Accessibility.
  25. @interface AccessibilityFS : NSObject {
  26. @private
  27. // A collection of info about processes keyed by their GMAXUIElement.
  28. NSMutableDictionary *appDictionary_;
  29. // The last time root was modified due to an app launching or terminating.
  30. NSDate *rootModifiedDate_;
  31. }
  32. @end