Line | |
---|
1 | // $Id$ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2006 Peter Johansson |
---|
5 | |
---|
6 | This file is part of the thep c++ tools library, |
---|
7 | http://lev.thep.lu.se/trac/c++_tools |
---|
8 | |
---|
9 | The c++ tools library is free software; you can redistribute it |
---|
10 | and/or modify it under the terms of the GNU General Public License |
---|
11 | as published by the Free Software Foundation; either version 2 of |
---|
12 | the License, or (at your option) any later version. |
---|
13 | |
---|
14 | The c++ tools library is distributed in the hope that it will be |
---|
15 | useful, but WITHOUT ANY WARRANTY; without even the implied warranty |
---|
16 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | General Public License for more details. |
---|
18 | |
---|
19 | You should have received a copy of the GNU General Public License |
---|
20 | along with this program; if not, write to the Free Software |
---|
21 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
22 | 02111-1307, USA. |
---|
23 | */ |
---|
24 | |
---|
25 | #include <c++_tools/classifier/Sampler.h> |
---|
26 | #include <c++_tools/classifier/Target.h> |
---|
27 | |
---|
28 | namespace theplu { |
---|
29 | namespace classifier { |
---|
30 | |
---|
31 | Sampler::Sampler(const Target& target) |
---|
32 | : target_(target) |
---|
33 | { |
---|
34 | } |
---|
35 | |
---|
36 | Sampler::~Sampler() |
---|
37 | { |
---|
38 | } |
---|
39 | |
---|
40 | |
---|
41 | }} // of namespace classifier and namespace theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.