Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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]));
}
}