comparison TempogramPlugin.cpp @ 40:df696e57a150

Add category and RDF description files, fill in copyright stuff
author Chris Cannam
date Fri, 12 Sep 2014 15:51:39 +0100
parents 2b2e707c8c20
children 89af6709f562
comparison
equal deleted inserted replaced
39:716f797e2025 40:df696e57a150
58 } 58 }
59 59
60 string 60 string
61 TempogramPlugin::getDescription() const 61 TempogramPlugin::getDescription() const
62 { 62 {
63 // Return something helpful here!
64 return "Cyclic Tempogram as described by Peter Grosche and Meinard Muller"; 63 return "Cyclic Tempogram as described by Peter Grosche and Meinard Muller";
65 } 64 }
66 65
67 string 66 string
68 TempogramPlugin::getMaker() const 67 TempogramPlugin::getMaker() const
69 { 68 {
70 //Your name here
71 return "Carl Bussey"; 69 return "Carl Bussey";
72 } 70 }
73 71
74 int 72 int
75 TempogramPlugin::getPluginVersion() const 73 TempogramPlugin::getPluginVersion() const
76 { 74 {
77 // Increment this each time you release a version that behaves
78 // differently from the previous one
79 return 1; 75 return 1;
80 } 76 }
81 77
82 string 78 string
83 TempogramPlugin::getCopyright() const 79 TempogramPlugin::getCopyright() const
84 { 80 {
85 // This function is not ideally named. It does not necessarily 81 return "Copyright 2014 Queen Mary University of London. GPL licence.";
86 // need to say who made the plugin -- getMaker does that -- but it
87 // should indicate the terms under which it is distributed. For
88 // example, "Copyright (year). All Rights Reserved", or "GPL"
89 return "";
90 } 82 }
91 83
92 TempogramPlugin::InputDomain 84 TempogramPlugin::InputDomain
93 TempogramPlugin::getInputDomain() const 85 TempogramPlugin::getInputDomain() const
94 { 86 {