Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / ORB_portspan / simpleI.h
blob8ce06ce9497be252f15149bbc616311b50e0b9a0
1 #ifndef SIMPLEI_H_
2 #define SIMPLEI_H_
4 #include "simpleS.h"
6 #if !defined (ACE_LACKS_PRAGMA_ONCE)
7 #pragma once
8 #endif /* ACE_LACKS_PRAGMA_ONCE */
10 //Class simple_i
11 class simple_i : public virtual POA_simple
13 public:
14 //Constructor
15 simple_i ();
17 //Destructor
18 ~simple_i () override = default;
20 void test () override;
23 #endif /* SIMPLEI_H_ */