fw4spl
Header_guards_forgotten/SrcLib/abc/fwA/include/fwA/Aa.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2999.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #include "fwA/Ab.hpp"
8 
9 #include <fwB/fwB.hpp>
10 
11 #include <fwC/fwC.hpp>
12 
13 namespace fwA
14 {
15 
16 class AA_CLASS_API Aa
17 {
18 
19 public:
20 
21  AA_API Aa(int& argc, char** argv);
22 
23  AA_API bool doSomething();
24 
25 private:
26 
27  Ab m_Ab;
28 
29  bool doSomethingPrivately();
30 };
31 
32 } // namespace fwA