BEAST/BSE - Better Audio System and Sound Engine  0.9.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
testobject.hh
Go to the documentation of this file.
1  // Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
2 #ifndef __BSE_TESTOBJECT_HH__
3 #define __BSE_TESTOBJECT_HH__
4 
5 #include <bse/bseutils.hh>
6 
7 namespace Bse {
8 
10 public:
11  explicit TestObjectImpl ();
12  virtual ~TestObjectImpl ();
13  virtual int echo_test (const std::string &msg);
14 };
15 typedef std::shared_ptr<TestObjectImpl> TestObjectImplP;
16 
17 } // Bse
18 
19 #endif // __BSE_TESTOBJECT_HH__
Definition: testobject.hh:9
virtual int echo_test(const std::string &msg)
See TestObject::echo_test()
Definition: testobject.cc:13
See also the corresponding IDL class TestObject.
Definition: bseserverapi.hh:18