File: interface_p.h

package info (click to toggle)
glibmm2.68 2.84.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,384 kB
  • sloc: xml: 118,044; cpp: 15,886; perl: 5,667; python: 2,114; makefile: 366; sh: 260
file content (22 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// -*- c++ -*-

#ifndef _GLIBMM_INTERFACE_P_H
#define _GLIBMM_INTERFACE_P_H

#include <glibmm/class.h>

namespace Glib
{

class GLIBMM_API Interface_Class : public Glib::Class
{
public:
  using CppObjectType = Interface;
  using BaseClassType = GTypeInterface;

  void add_interface(GType instance_type) const;
};

} // namespace Glib

#endif /* _GLIBMM_INTERFACE_P_H */