mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
24 lines
369 B
C++
24 lines
369 B
C++
// -*- c++ -*-
|
|
|
|
#ifndef _GLIBMM_INTERFACE_P_H
|
|
#define _GLIBMM_INTERFACE_P_H
|
|
|
|
#include <glibmm/class.h>
|
|
|
|
|
|
namespace Glib
|
|
{
|
|
|
|
class Interface_Class : public Glib::Class
|
|
{
|
|
public:
|
|
typedef Interface CppObjectType;
|
|
typedef GTypeInterface BaseClassType;
|
|
|
|
void add_interface(GType instance_type) const;
|
|
};
|
|
|
|
} // namespace Glib
|
|
|
|
#endif /* _GLIBMM_INTERFACE_P_H */
|
|
|