Skip to content

Commit

Permalink
Added copyright notice and license to all the source files
Browse files Browse the repository at this point in the history
  • Loading branch information
sadmansk committed Jan 6, 2015
1 parent b42e8f8 commit b0d1831
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 21 deletions.
10 changes: 6 additions & 4 deletions source/filter.cpp
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
/*
This file is part of Foobar.
Copyright (C) 2014 Sadman Kazi, Wojciech Swiderski, Serge Babayan, Shan Phylim
Foobar is free software: you can redistribute it and/or modify
This file is part of MyoPad.
MyoPad is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Foobar is distributed in the hope that it will be useful,
MyoPad is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
along with MyoPad. If not, see <http://www.gnu.org/licenses/>.
*/

#define _USE_MATH_DEFINES
Expand Down
19 changes: 19 additions & 0 deletions source/filter.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright (C) 2014 Sadman Kazi, Wojciech Swiderski, Serge Babayan, Shan Phylim
This file is part of MyoPad.
MyoPad is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MyoPad is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MyoPad. If not, see <http://www.gnu.org/licenses/>.
*/

#include "myo/myo.hpp"

class Filter : public myo::DeviceListener {
Expand Down
21 changes: 21 additions & 0 deletions source/interpreter.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
// Copyright (C) 2013-2014 Thalmic Labs Inc.
// Distributed under the Myo SDK license agreement. See LICENSE.txt for details.

/*
Copyright (C) 2014 Sadman Kazi, Wojciech Swiderski, Serge Babayan, Shan Phylim
This file is part of MyoPad.
MyoPad is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MyoPad is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MyoPad. If not, see <http://www.gnu.org/licenses/>.
*/


#define _USE_MATH_DEFINES
#include <cmath>
#include <iostream>
Expand Down
25 changes: 18 additions & 7 deletions source/kinematics.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
//
// kinematics.cpp
// interpreter
//
// Created by Wojtek Swiderski on 2014-11-01.
// Copyright (c) 2014 myohack. All rights reserved.
//
/*
Copyright (C) 2014 Sadman Kazi, Wojciech Swiderski, Serge Babayan, Shan Phylim
This file is part of MyoPad.
MyoPad is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MyoPad is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MyoPad. If not, see <http://www.gnu.org/licenses/>.
*/

#include <iostream>
#include <time.h>
Expand Down
29 changes: 19 additions & 10 deletions source/kinematics.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
//
// kinematics.h
// interpreter
//
// Created by Wojtek Swiderski on 2014-11-01.
// Copyright (c) 2014 myohack. All rights reserved.
//

//#ifndef __interpreter__kinematics__
//#define __interpreter__kinematics__
/*
Copyright (C) 2014 Sadman Kazi, Wojciech Swiderski, Serge Babayan, Shan Phylim
This file is part of MyoPad.
MyoPad is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MyoPad is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MyoPad. If not, see <http://www.gnu.org/licenses/>.
*/


// Kinematic class contains the acceleration, velocity and position data
// Integrates and filters acceleration input to give accurate velocity
Expand Down
19 changes: 19 additions & 0 deletions source/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
Copyright (C) 2014 Sadman Kazi, Wojciech Swiderski, Serge Babayan, Shan Phylim
This file is part of MyoPad.
MyoPad is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MyoPad is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MyoPad. If not, see <http://www.gnu.org/licenses/>.
*/

//the main
#include "filter.h"
#include "kinematics.h"
Expand Down

0 comments on commit b0d1831

Please sign in to comment.