fw4spl
Uncrustify_unformatted/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 #ifndef __FWA_AA_HPP__
8 #define __FWA_AA_HPP__
9 
10 #include "fwA/Ab.hpp"
11 
12 #include <fwB/fwB.hpp>
13 
14 #include <fwC/fwC.hpp>
15 
16 namespace fwA
17 {
18 
19 class AA_CLASS_API Aa
20 {
21 
22 public:
23 
24  AA_API Aa(int& argc, char** argv);
25 
26  AA_API bool doSomething();
27 
28 private:
29 
30  Ab m_Ab;
31 
32  bool doSomethingPrivately();
33 };
34 
35 } // namespace fwA
36 
37 #endif // __FWA_AA_HPP__