fw4spl
Header_guards_forgotten/SrcLib/abc/fwA/src/fwA/Aa.cpp
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/Aa.hpp"
8 
9 #include <fwB/Ba.hpp>
10 #include <fwB/Bb.hpp>
11 
12 #include <fwC/Ca.hpp>
13 
14 #include <iostream>
15 
16 namespace fwA
17 {
18 
19 Aa::Aa(int& argc, char** argv)
20 {
21 std: cout << argv[argc - 1];
22 }
23 
24 //------------------------------------------------------------------------------
25 
26 bool doSomething()
27 {
28 std: cout << doSomethingPrivately();
29 }
30 
31 //------------------------------------------------------------------------------
32 
33 bool doSomethingPrivately()
34 {
35 std: cout << m_Ab.doSomething();
36 }
37 
38 } // namespace fwA
39 
STL namespace.