BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
testobject.hh
Go to the documentation of this file.
00001  // Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
00002 #ifndef __BSE_TESTOBJECT_HH__
00003 #define __BSE_TESTOBJECT_HH__
00004 
00005 #include <bse/bseutils.hh>
00006 
00007 namespace Bse {
00008 
00009 class TestObjectImpl : public TestObjectIface {
00010 public:
00011   explicit      TestObjectImpl ();
00012   virtual      ~TestObjectImpl ();
00013   virtual int   echo_test      (const std::string &msg);
00014 };
00015 typedef std::shared_ptr<TestObjectImpl> TestObjectImplP;
00016 
00017 } // Bse
00018 
00019 #endif // __BSE_TESTOBJECT_HH__
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines