Skip to content

Commit

Permalink
Created stubs from AutoFilterExample and EventExample
Browse files Browse the repository at this point in the history
  • Loading branch information
gtremper committed Jul 31, 2014
1 parent 9f1881b commit 8c4be79
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
Empty file removed examples/AutoFilerExample.cpp
Empty file.
8 changes: 8 additions & 0 deletions examples/AutoFilterExample.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright (C) 2012-2014 Leap Motion, Inc. All rights reserved.
#include <autowiring/Autowired.h>
#include <iostream>
#include <memory>

int main() {
std::cout << "Hello World" << std::endl;
}
8 changes: 8 additions & 0 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ set_property(TARGET ContextExample PROPERTY FOLDER "Examples")
add_executable(ThreadExample ThreadExample.cpp)
target_link_libraries(ThreadExample Autowiring)
set_property(TARGET ThreadExample PROPERTY FOLDER "Examples")

add_executable(EventExample EventExample.cpp)
target_link_libraries(EventExample Autowiring)
set_property(TARGET EventExample PROPERTY FOLDER "Examples")

add_executable(AutoFilterExample AutoFilterExample.cpp)
target_link_libraries(AutoFilterExample Autowiring)
set_property(TARGET AutoFilterExample PROPERTY FOLDER "Examples")
14 changes: 14 additions & 0 deletions examples/EventExample.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright (C) 2012-2014 Leap Motion, Inc. All rights reserved.
#include <autowiring/Autowired.h>
#include <iostream>
#include <memory>

class MyEventReceiver:
public EventReceiver
{

};

int main(){
std::cout << "Hello World" << std::endl;
}

0 comments on commit 8c4be79

Please sign in to comment.