Merge pull request #1815 from sonndinh/get_signal_info
[ACE_TAO.git] / TAO / tests / Bug_3746_Regression / Test_i.h
blob370f09f3aba22475aa50e3110c7604ac8a15d8f3
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::TestLargeSequence interface
9 class BoundSequences
10 : public virtual POA_Test::BoundSequences
12 public:
13 /// Constructor
14 BoundSequences (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual ::CORBA::ULong SendSequenceOf10Long (
18 ::CORBA::ULong LengthSent,
19 const ::Test::BoundSequences::SequenceOf10Long &inSeq
22 virtual void shutdown (void);
24 private:
25 /// Use an ORB reference to convert strings to objects and shutdown
26 /// the application.
27 CORBA::ORB_var orb_;
30 #include /**/ "ace/post.h"
31 #endif /* HELLO_H */