fw4spl
Sort_includes/SrcLib/abc/fwA/include/fwA/Ab.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_AB_HPP__
8 #define __FWA_AB_HPP__
9 
10 namespace fwA
11 {
12 
13 class AB_CLASS_API Ab
14 {
15 
16 public:
17 
18  //------------------------------------------------------------------------------
19 
20  AB_API inline bool doSomething()
21  {
22  return this->doSomethingPrivately();
23  }
24 
25 private:
26 
27  //------------------------------------------------------------------------------
28 
29  inline bool doSomethingPrivately()
30  {
31  return true;
32  }
33 };
34 
35 } // namespace fwA
36 
37 #endif // __FWA_AB_HPP__