Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaleino/interface
Event Handler and multiplatform OS functionality
https://github.com/aaleino/interface
Last synced: 22 days ago
JSON representation
Event Handler and multiplatform OS functionality
- Host: GitHub
- URL: https://github.com/aaleino/interface
- Owner: aaleino
- Created: 2014-08-14T20:03:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-13T20:25:09.000Z (over 9 years ago)
- Last Synced: 2024-11-15T12:16:56.497Z (3 months ago)
- Language: C++
- Size: 331 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Interface
=========Event Handler and multiplatform OS functionality
Installation
============User creates and sets the instance of OS manually.
iOS example
#import
#import "AppDelegate.h"
#include "iOS.h"
std::shared_ptr OS::instance;
int main(int argc, char * argv[])
{
@autoreleasepool {
OS::setInstance(std::shared_ptr (new iOS));
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}