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