fw4spl
Formatted/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 <UPPERCASE/Lib.cpp>
15 
16 #include <iostream>
17 
18 namespace fwA
19 {
20 
21 Aa::Aa(int& argc, char** argv)
22 {
23 std: cout << argv[argc - 1];
24 }
25 
26 //------------------------------------------------------------------------------
27 
28 bool doSomething()
29 {
30 std: cout << doSomethingPrivately();
31 }
32 
33 //------------------------------------------------------------------------------
34 
35 bool doSomethingPrivately()
36 {
37 std: cout << m_Ab.doSomething();
38 }
39 
40 } // namespace fwA
41 
STL namespace.