comparison unit-tests/BTrack Tests/main.cpp @ 51:68d01fea1e8d

Added a unit testing project, and did some commenting. Also moved python-module into a modules-and-plug-ins folder
author Adam Stark <adamstark@users.noreply.github.com>
date Tue, 21 Jan 2014 10:24:33 +0000
parents
children 88c8d3862eee
comparison
equal deleted inserted replaced
50:bb3803edaa17 51:68d01fea1e8d
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