comparison unit-tests/BTrack Tests/main.cpp @ 14:18fc3c248436 develop

Added a unit testing project, and did some commenting. Also moved python-module into a modules-and-plug-ins folder
author Adam <adamstark.uk@gmail.com>
date Tue, 21 Jan 2014 10:24:33 +0000
parents
children 88c8d3862eee
comparison
equal deleted inserted replaced
11:7ce3f8718da1 14:18fc3c248436
1 //
2 // main.cpp
3 // BTrack Tests
4 //
5 // Created by Adam Stark on 21/01/2014.
6 // Copyright (c) 2014 Adam Stark. All rights reserved.
7 //
8
9 #include <iostream>
10
11 int main(int argc, const char * argv[])
12 {
13
14 // insert code here...
15 std::cout << "Hello, World!\n";
16 return 0;
17 }
18