should work everywhere now
[MKUltra.git] / test / foo.hpp
blob381ee264fc84d2f8aaa1f878aa115f6684c90f31
1 /*
2 Copyright © 2016-2017 Gene Hightower <gene@digilicious.com>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, version 3.
8 This program is distributed in the hope that it will be useful, but
9 WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program. See the file LICENSE. If not, see
15 <http://www.gnu.org/licenses/>.
18 #ifndef FOO_HPP_INCLUDED
19 #define FOO_HPP_INCLUDED
21 #include "dll_spec.h"
23 class DLL_PUBLIC foo {
24 public:
25 foo(int x, int y, int z) : x_(x), y_(y), z_(z) {}
27 int importance() const;
29 private:
30 int x_, y_, z_;
33 #endif // FOO_HPP_INCLUDED