PageRenderTime 151ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/main.m

http://github.com/petewarden/iPhoneTracker
Objective C | 34 lines | 5 code | 3 blank | 26 comment | 0 complexity | f40326b6f8c6bcfe71a5e337b717e01d MD5 | raw file
  1. //
  2. // main.m
  3. // iPhoneTracking
  4. //
  5. // Created by Pete Warden on 4/15/11.
  6. // Copyright 2011 Apple. All rights reserved.
  7. //
  8. /***********************************************************************************
  9. *
  10. * All code (C) Pete Warden, 2011
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation, either version 3 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. *
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  25. *
  26. ************************************************************************************/
  27. #import <Cocoa/Cocoa.h>
  28. int main(int argc, char *argv[])
  29. {
  30. return NSApplicationMain(argc, (const char **) argv);
  31. }