1 /*
2  * Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3  *           (C) 2020 Vladimir Sadovnikov <sadko4u@gmail.com>
4  *
5  * This file is part of lsp-plugins
6  * Created on: 13 апр. 2016 г.
7  *
8  * lsp-plugins is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * any later version.
12  *
13  * lsp-plugins is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with lsp-plugins. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #include <metadata/developers.h>
23 
24 namespace lsp
25 {
26     namespace developers
27     {
28         const person_t v_sadovnikov =
29         {
30             "v_sadovnikov",
31             "SadKo",
32             "Vladimir Sadovnikov",
33             "lsp.plugin@gmail.com",
34             "http://lsp-plug.in/"
35         };
36 
37         const person_t s_tronci =
38         {
39             "s_tronci",
40             "CrocoDuck",
41             "Stefano Tronci",
42             "crocoduck.oducks@gmail.com",
43             "https://thecrocoduckspond.wordpress.com/"
44         };
45 
46     }
47 }
48 
49 
50