BEAST/BSE - Better Audio System and Sound Engine
0.8.2
|
00001 // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html 00002 #ifndef __SFIDL_CXXBASE_H__ 00003 #define __SFIDL_CXXBASE_H__ 00004 00005 #include "sfidl-cbase.hh" 00006 #include "sfidl-namespace.hh" 00007 #include "sfidl-utils.hh" 00008 00009 namespace Sfidl { 00010 00011 class CodeGeneratorCxxBase : public CodeGeneratorCBase { 00012 protected: 00013 String untyped_pspec_constructor (const Param ¶m); 00014 String typed_pspec_constructor (const Param ¶m); 00015 00016 public: 00017 CodeGeneratorCxxBase (const Parser& parser) : CodeGeneratorCBase (parser) { 00018 } 00019 }; 00020 00021 }; 00022 00023 #endif /* __SFIDL_CXXBASE_H__ */ 00024 00025 /* vim:set ts=8 sts=2 sw=2: */