diff --git a/src/a2j_proxy.cpp b/src/a2j_proxy.cpp new file mode 100644 index 00000000..4c2c42f6 --- /dev/null +++ b/src/a2j_proxy.cpp @@ -0,0 +1,34 @@ +// -*- Mode: C++ ; indent-tabs-mode: t -*- +/* This file is part of Patchage. + * Copyright (C) 2008 Nedko Arnaudov + * + * Patchage is free software; you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation; either version 2 of the License, or (at your option) any later + * version. + * + * Patchage is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "common.hpp" +#include "a2j_proxy.hpp" + +a2j_proxy::a2j_proxy() +{ +} + +a2j_proxy::~a2j_proxy() +{ +} + +const char * +a2j_proxy::get_jack_client_name() +{ + return NULL; +} diff --git a/src/a2j_proxy.hpp b/src/a2j_proxy.hpp new file mode 100644 index 00000000..959d8cb9 --- /dev/null +++ b/src/a2j_proxy.hpp @@ -0,0 +1,37 @@ +// -*- Mode: C++ ; indent-tabs-mode: t -*- +/* This file is part of Patchage. + * Copyright (C) 2008 Nedko Arnaudov + * + * Patchage is free software; you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation; either version 2 of the License, or (at your option) any later + * version. + * + * Patchage is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef A2J_PROXY_HPP__24525CB1_8AED_4697_8C56_5C57473839CC__INCLUDED +#define A2J_PROXY_HPP__24525CB1_8AED_4697_8C56_5C57473839CC__INCLUDED + +struct a2j_proxy_impl; + +class a2j_proxy +{ +public: + a2j_proxy(); + ~a2j_proxy(); + + const char * + get_jack_client_name(); + +private: + a2j_proxy_impl * _impl_ptr; +}; + +#endif // #ifndef A2J_PROXY_HPP__24525CB1_8AED_4697_8C56_5C57473839CC__INCLUDED diff --git a/wscript b/wscript index 642b9039..ac0f7947 100644 --- a/wscript +++ b/wscript @@ -85,6 +85,7 @@ def build(bld): 'src/project_list.cpp', 'src/project_properties.cpp', 'src/session.cpp', + 'src/a2j_proxy.cpp' ] prog.includes = 'src' # make waf dependency tracking work prog.target = bld.env()['APP_INSTALL_NAME']